From 3078dfe80be0f4cb3eacb439810e69975eb75148 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Wed, 31 Jan 2024 12:05:59 +0100 Subject: [PATCH] minor fix --- core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain.go b/core/blockchain.go index b6e6096da3..180f74fc11 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -1809,7 +1809,7 @@ func (bc *BlockChain) insertChain(chain types.Blocks, setHead bool) (int, error) } // The traced section of block import. - res, err := bc.processBlock(block, statedb, &followupInterrupt, start, setHead) + res, err := bc.processBlock(block, statedb, start, setHead) followupInterrupt.Store(true) if err != nil { return it.index, err