mirror of https://github.com/status-im/op-geth.git
peer constructors now set version string with ethereum.ClientIdentity().String()
This commit is contained in:
parent
c833c3fec8
commit
90c2064640
4
peer.go
4
peer.go
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue