aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-23 19:38:51 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:16 +0800
commit44ce26cb076c5852167c1ffc9eceff9148ee5477 (patch)
tree413cc5cf1f08175505b38320fd78ec01b3393e97 /core
parent7bcd8d6b9daec0771d7e8e9b5bdbdc247731d1a3 (diff)
downloadgo-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar.gz
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar.bz2
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar.lz
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar.xz
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.tar.zst
go-tangerine-44ce26cb076c5852167c1ffc9eceff9148ee5477.zip
dex: fix missing randomness assignment
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index d2999f926..5393171f6 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1623,7 +1623,7 @@ func (bc *BlockChain) insertPendingBlocks(chain types.Blocks) (int, []interface{
if err != nil {
return i, nil, nil, fmt.Errorf("pendingState commit error: %v", err)
}
- log.Info("commit pending root", "hash", root)
+ log.Info("Commit pending root", "hash", root)
// add into pending blocks
bc.pendingBlocks[block.NumberU64()] = struct {