Commit a09c7d01 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5490 from ethereum-optimism/refcell/fix/safecall

fix(contracts-bedrock): SafeCall FFI Interface Fuzzing
parents 09d23ee8 aa3169fc
......@@ -23,6 +23,8 @@ contract SafeCall_call_Test is CommonTest {
vm.assume(to != address(0x000000000000000000636F6e736F6c652e6c6f67));
// don't call the create2 deployer
vm.assume(to != address(0x4e59b44847b379578588920cA78FbF26c0B4956C));
// don't call the ffi interface
vm.assume(to != address(0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f));
assertEq(from.balance, 0, "from balance is 0");
vm.deal(from, value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment