diff --git a/tests/rip7560/process_test.go b/tests/rip7560/process_test.go index 4d97c59dd7..30520fdded 100644 --- a/tests/rip7560/process_test.go +++ b/tests/rip7560/process_test.go @@ -98,7 +98,8 @@ func runProcess(t *testContext, aatxs []*types.Rip7560AccountAbstractionTx) erro } txs = append(txs, tx3) - b := types.NewBlock(blockchain.CurrentBlock(), txs, nil, nil, trie.NewStackTrie(nil)) + body := types.Body{Transactions: txs} + b := types.NewBlock(blockchain.CurrentBlock(), &body, nil, trie.NewStackTrie(nil)) _, _, _, err = blockchain.Processor().Process(b, state.StateDB, vm.Config{}) if err != nil { return err