diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-23 19:38:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:51 +0800 |
commit | d8e73b37e12ce799dab8007660cc5a7d0301c652 (patch) | |
tree | 227c7a1b4a5f62ec292f1041201df68b4e58a5d7 /core/blockchain.go | |
parent | fcc5fe5ea800a9d3eeac487a151ea2c5a3ef6db1 (diff) | |
download | go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar.gz go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar.bz2 go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar.lz go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar.xz go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.tar.zst go-tangerine-d8e73b37e12ce799dab8007660cc5a7d0301c652.zip |
dex: fix missing randomness assignment
Diffstat (limited to 'core/blockchain.go')
-rw-r--r-- | core/blockchain.go | 2 |
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 { |