diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-05 17:55:11 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-05 17:55:11 +0800 |
commit | 45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b (patch) | |
tree | 01c71c40981f4f75e1721011006d2da96dfc3c2d /eth | |
parent | 7315962880e63de070c3b48c11bd249489df4141 (diff) | |
parent | c47866d25174bd783ee6bcd5b400d81d7bf598bb (diff) | |
download | dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar.gz dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar.bz2 dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar.lz dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar.xz dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.tar.zst dexon-45afbe5d9cdd3da2443d4d407fc1b57b03f6ce9b.zip |
Merge remote-tracking branch 'upstream/poc-9' into blockpool3
Diffstat (limited to 'eth')
-rw-r--r-- | eth/protocol.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol.go b/eth/protocol.go index 663af43fe..c887af129 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -250,7 +250,7 @@ func (self *ethProtocol) handle() error { return self.protoError(ErrDecode, "msg %v: %v", msg, err) } hash := request.Block.Hash() - fmt.Println("received block: %x", hash) + fmt.Printf("received block: %x\n", hash) _, chainHead, _ := self.chainManager.Status() jsonlogger.LogJson(&logger.EthChainReceivedNewBlock{ |