Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Mason Liang committed Sep 21, 2023
1 parent 691a6d0 commit 9c2a22f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions zkevm-circuits/src/evm_circuit/execution/extcodehash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ mod test {
EXTCODEHASH
};

let block: GethData = TestContext::<1, 1>::new(
let ctx = TestContext::<1, 1>::new(
None,
|accs| {
accs[0].address(Address::repeat_byte(23)).balance(eth(10));
Expand All @@ -281,9 +281,8 @@ mod test {
},
|block, _tx| block.number(0xcafeu64),
)
.unwrap()
.into();
.unwrap();

test_circuits_block_geth_data_default(block).unwrap();
CircuitTestBuilder::new_from_test_ctx(ctx).run()
}
}

0 comments on commit 9c2a22f

Please sign in to comment.