diff options
author | Bojie Wu <bojie@dexon.org> | 2018-10-09 13:28:45 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:54 +0800 |
commit | e0aee81b2d9da565f369373eaf9dc558db8a2a3d (patch) | |
tree | fe9f5d98fb541e3eede1e8587cfe11ea3b34a347 /core/blockchain.go | |
parent | cd418f06bbb614d0431fb633ac53549bf03ac917 (diff) | |
download | dexon-e0aee81b2d9da565f369373eaf9dc558db8a2a3d.tar.gz dexon-e0aee81b2d9da565f369373eaf9dc558db8a2a3d.tar.zst dexon-e0aee81b2d9da565f369373eaf9dc558db8a2a3d.zip |
app: check nonce and balance in prepare payload
Diffstat (limited to 'core/blockchain.go')
-rw-r--r-- | core/blockchain.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index e59c36653..d2999f926 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -28,10 +28,9 @@ import ( "sync/atomic" "time" - "github.com/hashicorp/golang-lru" - coreCommon "github.com/dexon-foundation/dexon-consensus-core/common" coreTypes "github.com/dexon-foundation/dexon-consensus-core/core/types" + lru "github.com/hashicorp/golang-lru" "github.com/dexon-foundation/dexon/common" "github.com/dexon-foundation/dexon/common/mclock" @@ -1620,10 +1619,11 @@ func (bc *BlockChain) insertPendingBlocks(chain types.Blocks) (int, []interface{ proctime := time.Since(bstart) // commit state to refresh stateCache - _, err = pendingState.Commit(true) + root, err := pendingState.Commit(true) if err != nil { return i, nil, nil, fmt.Errorf("pendingState commit error: %v", err) } + log.Info("commit pending root", "hash", root) // add into pending blocks bc.pendingBlocks[block.NumberU64()] = struct { |