peer constructors now set version string with ethereum.ClientIdentity().String()

This commit is contained in:
zelig 2014-07-03 17:30:37 +01:00
parent c833c3fec8
commit 90c2064640
1 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ func NewPeer(conn net.Conn, ethereum *Ethereum, inbound bool) *Peer {
pubkey: pubkey, pubkey: pubkey,
blocksRequested: 10, blocksRequested: 10,
caps: ethereum.ServerCaps(), caps: ethereum.ServerCaps(),
version: ethutil.Config.ClientString, version: ethereum.ClientIdentity().String(),
} }
} }
@ -175,7 +175,7 @@ func NewOutboundPeer(addr string, ethereum *Ethereum, caps Caps) *Peer {
connected: 0, connected: 0,
disconnect: 0, disconnect: 0,
caps: caps, caps: caps,
version: ethutil.Config.ClientString, version: ethereum.ClientIdentity().String(),
} }
// Set up the connection in another goroutine so we don't block the main thread // Set up the connection in another goroutine so we don't block the main thread