core/blockchain: go fmt

This commit is contained in:
Martin Holst Swende 2017-01-16 11:44:53 +01:00
parent 661442886e
commit 81d63bdec5

View file

@ -1156,9 +1156,9 @@ func (self *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
glog.Infof("Chain split detected after #%v [%x…]. Reorganising chain (-%v +%v blocks) from #%v-#%v [%x/%x] in favour of #%v-#%v [%x/%x]", glog.Infof("Chain split detected after #%v [%x…]. Reorganising chain (-%v +%v blocks) from #%v-#%v [%x/%x] in favour of #%v-#%v [%x/%x]",
commonNumber, commonHash[:4], commonNumber, commonHash[:4],
oldLen, newLen, oldLen, newLen,
oldFirst.Number(),oldLast.Number(), oldFirst.Number(), oldLast.Number(),
oldFirst.Hash().Bytes()[:4] ,oldLast.Hash().Bytes()[:4], oldFirst.Hash().Bytes()[:4], oldLast.Hash().Bytes()[:4],
newFirst.Number(),newLast.Number(), newFirst.Number(), newLast.Number(),
newFirst.Hash().Bytes()[:4], newLast.Hash().Bytes()[:4]) newFirst.Hash().Bytes()[:4], newLast.Hash().Bytes()[:4])
} }