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
While most tests panic with an error from the test runner when the result of the test is not as expected, two panic with a different error:
2024-02-10T23:51:27.1104073Z ---- stCreateTest::stCreateTest::test_CreateTransactionHighNonce_d0g0v0_Shanghai stdout ----
2024-02-10T23:51:27.1105227Z thread 'stCreateTest::stCreateTest::test_CreateTransactionHighNonce_d0g0v0_Shanghai' panicked at /home/runner/.cargo/git/checkouts/blockifier-ea33f9ec5a871360/5bb1c72/crates/blockifier/src/state/cached_state.rs:284:30:
2024-02-10T23:51:27.1105340Z attempt to add with overflow
2024-02-10T23:51:27.1105345Z
2024-02-10T23:51:27.1105767Z ---- stCreateTest::stCreateTest::test_CreateTransactionHighNonce_d0g0v1_Shanghai stdout ----
2024-02-10T23:51:27.1106902Z thread 'stCreateTest::stCreateTest::test_CreateTransactionHighNonce_d0g0v1_Shanghai' panicked at /home/runner/.cargo/git/checkouts/blockifier-ea33f9ec5a871360/5bb1c72/crates/blockifier/src/state/cached_state.rs:284:30:
2024-02-10T23:51:27.1107008Z attempt to add with overflow
My first guess would be that they try to send a transaction with a nonce too high (overflowing the 2**64 limit of the EVM), but setting a nonce this high fails at the blockifier level and thus the test can't be run.
The text was updated successfully, but these errors were encountered:
Bug Report
Kakarot version
While most tests panic with an error from the test runner when the result of the test is not as expected, two panic with a different error:
My first guess would be that they try to send a transaction with a nonce too high (overflowing the 2**64 limit of the EVM), but setting a nonce this high fails at the blockifier level and thus the test can't be run.
The text was updated successfully, but these errors were encountered: