We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
debug_assert_eq!
Adding the following to zk_evm/Cargo.toml:
zk_evm/Cargo.toml
[profile.release] debug-assertions = true
and then running this:
export RPC=<ping me for url> export BLOCK=19578175 cargo run --release --bin rpc -- --backoff 3000 --max-retries 100 --rpc-url $RPC --rpc-type native fetch --start-block $BLOCK --end-block $BLOCK 1> $BLOCK.json ./prove_stdio.sh $BLOCK.json test_only
exits with EXITCODE 1 and should produce a test.out, that contains:
test.out
assertion `left == right` failed left: 0xb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6 right: 0x0000000000000000000000000000000000000000000000000000000000000001
The value is a codehash and the right side is supposed to come from the KECCAK_GENERAL procedure.
codehash
KECCAK_GENERAL
The text was updated successfully, but these errors were encountered:
I guess this is solved by @hratoanina on slack?
Sorry, something went wrong.
It's now solved on my RRC jumpdest branch.
einar-polygon
No branches or pull requests
Adding the following to
zk_evm/Cargo.toml
:and then running this:
exits with EXITCODE 1 and should produce a
test.out
, that contains:The value is a
codehash
and the right side is supposed to come from theKECCAK_GENERAL
procedure.The text was updated successfully, but these errors were encountered: