mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 12:46:44 +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,
|
blockPool: blockPool,
|
||||||
rw: rw,
|
rw: rw,
|
||||||
peer: peer,
|
peer: peer,
|
||||||
id: (string)(peer.Identity().Pubkey()),
|
id: fmt.Sprintf("%x", peer.Identity().Pubkey()),
|
||||||
}
|
}
|
||||||
err = self.handleStatus()
|
err = self.handleStatus()
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue