0

I am new to ethereum.And could you please tell me the proper use of addpeer to connect two nodes in a single machine.?

anjana
  • 1
  • 1

1 Answers1

0

In the first terminal do the following command

 admin.nodeInfo.enode 

It returns the enode url.Its a unique id for nodes to communicate with each other.

In the second terminal do the addPeer command.

admin.addPeer(“enode_url_u_just_get_from_the_first_terminal”)

To check if the node is successfully added using the following command :-

  web3.net.peerCount
Crissi Mariam Robert
  • 1,174
  • 1
  • 9
  • 25