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

@ -160,7 +160,7 @@ func testBlockChainImport(chain types.Blocks, blockchain *BlockChain) error {
if err != nil {
return err
}
receipts, _, _, usedGas, err := blockchain.processor.Process(block, statedb, vm.Config{})
receipts, _, usedGas, err := blockchain.processor.Process(block, statedb, vm.Config{})
if err != nil {
blockchain.reportBlock(block, receipts, err)
return err