Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/cancun/eip7516_blobgasfee/test_blobgasfee_opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def caller_code(
callee_address: Address,
) -> Bytecode:
"""Bytecode used to call the bytecode containing the BLOBBASEFEE opcode."""
return Op.SSTORE(Op.NUMBER, Op.CALL(gas=call_gas, address=callee_address))
return Op.SSTORE(Op.SELFBALANCE, Op.CALL(gas=call_gas, address=callee_address))


@pytest.fixture
Expand Down Expand Up @@ -83,6 +83,7 @@ def tx(pre: Alloc, caller_address: Address) -> Transaction:
sender=pre.fund_eoa(),
gas_limit=1_000_000,
to=caller_address,
value=1,
)


Expand Down
Loading