diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-02 03:18:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-02 03:18:09 +0800 |
commit | 6dc46d3341dc5fa25bd005f9606de258874139be (patch) | |
tree | 39b5d7dad5a943de4e187f99c93da5aa7fc9f2b8 /chain/block_manager.go | |
parent | a3559c5e1b469890bb8d71e9992175febaae31c7 (diff) | |
download | dexon-6dc46d3341dc5fa25bd005f9606de258874139be.tar.gz dexon-6dc46d3341dc5fa25bd005f9606de258874139be.tar.zst dexon-6dc46d3341dc5fa25bd005f9606de258874139be.zip |
Changed the way transactions are being added to the transaction pool
Diffstat (limited to 'chain/block_manager.go')
-rw-r--r-- | chain/block_manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chain/block_manager.go b/chain/block_manager.go index fdb221cc3..4d8d8dae6 100644 --- a/chain/block_manager.go +++ b/chain/block_manager.go @@ -246,7 +246,7 @@ func (sm *BlockManager) ProcessWithParent(block, parent *Block) (td *big.Int, me return } - state.Update(nil) + state.Update(ethutil.Big0) if !block.State().Cmp(state) { err = fmt.Errorf("invalid merkle root. received=%x got=%x", block.Root(), state.Root()) |