aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 7a695ac38..3f0e7203e 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1827,10 +1827,6 @@ func (bc *BlockChain) ProcessEmptyBlock(block *types.Block) (*common.Hash, error
header.ParentHash = parentBlock.Hash()
newBlock, err := bc.engine.Finalize(bc, header, currentState, nil, nil, nil)
- if header.Root != parentBlock.Root() {
- return nil, fmt.Errorf("empty block state root must same as parent")
- }
-
root := newBlock.Root()
if _, ok := bc.GetRoundHeight(newBlock.Round()); !ok {
bc.storeRoundHeight(newBlock.Round(), newBlock.NumberU64())