You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are having some mismatches when running the ef-tests.
If we run:
make run-evm-ef-tests flags="--tests account_warming.json"
we get as output:
Internal error: Unexpected overflow in gas operation
The first test: Test: tests/prague/eip7702_set_code_tx/test_gas.py::test_account_warming[fork_Prague-state_test-single_valid_authorization_single_signer-check_delegated_account_first_True]
performs a CALL inside a CALL and the gas in the stack is set to 0. Later on when we do the following inside the generic_call()
let gas_left_from_new_call_frame = new_call_frame
.gas_limit.checked_sub(tx_report.gas_used).ok_or(InternalError::GasOverflow)?;
It fails because, the new_call_frame.gas_limit == 0
The text was updated successfully, but these errors were encountered:
We are having some mismatches when running the ef-tests.
If we run:
we get as output:
The first test:
Test: tests/prague/eip7702_set_code_tx/test_gas.py::test_account_warming[fork_Prague-state_test-single_valid_authorization_single_signer-check_delegated_account_first_True]
performs a
CALL
inside aCALL
and the gas in the stack is set to 0. Later on when we do the following inside thegeneric_call()
It fails because, the
new_call_frame.gas_limit
== 0The text was updated successfully, but these errors were encountered: