Remove access witness from the signature of Process (#38)

This commit is contained in:
Guillaume Ballet
2021-11-26 16:19:49 +01:00
parent 909049c5fe
commit 86bdc3fb39
5 changed files with 8 additions and 9 deletions

View File

@ -1599,7 +1599,7 @@ func (bc *BlockChain) insertChain(chain types.Blocks, verifySeals, setHead bool)
receipts types.Receipts
logs []*types.Log
)
receipts, logs, _, usedGas, err = bc.processor.Process(block, statedb, bc.vmConfig)
receipts, logs, usedGas, err = bc.processor.Process(block, statedb, bc.vmConfig)
if err != nil {
bc.reportBlock(block, receipts, err)
atomic.StoreUint32(&followupInterrupt, 1)