mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
for blockpool logging peer id is fmt.Sprintf("%x", peer.Identity().Pubkey())
This commit is contained in:
parent
b39aaa0441
commit
add19a6882
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ func runEthProtocol(txPool txPool, chainManager chainManager, blockPool blockPoo
|
|||
blockPool: blockPool,
|
||||
rw: rw,
|
||||
peer: peer,
|
||||
id: (string)(peer.Identity().Pubkey()),
|
||||
id: fmt.Sprintf("%x", peer.Identity().Pubkey()),
|
||||
}
|
||||
err = self.handleStatus()
|
||||
if err == nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue