-
Notifications
You must be signed in to change notification settings - Fork 578
feat(avm): mutate enqueued calls #19315
New issue
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
feat(avm): mutate enqueued calls #19315
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
d34e98d to
e1ca69a
Compare
8325579 to
5ab4f28
Compare
| extern "C" int LLVMFuzzerInitialize(int*, char***) | ||
| { | ||
| FuzzerWorldStateManager::initialize(); | ||
| std::filesystem::create_directories("proving_inputs"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was unused and should have been cleaned up
| } catch (const TxExecutionException& e) { | ||
| important("Teardown failure while simulating tx ", tx.hash, ": ", e.what()); | ||
| // TODO(fcarreiro): move these back to important log once/if we have log levels properly set up. | ||
| vinfo("Teardown failure while simulating tx ", tx.hash, ": ", e.what()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this gets too noisy otherwise
5ab4f28 to
b884d8f
Compare
b884d8f to
998b6c7
Compare
sirasistant
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
BEGIN_COMMIT_OVERRIDE feat(avm)!: optionally use TS logger in C++ simulation (#19305) chore(avm): bytecode caching comments chore(avm): disable VK hash checking in tests fix(avm)!: instr_fetching soundness bug (#19381) fix(avm): dont catch wide exceptions (#19388) refactor(avm): Refactor get contract instance fuzzer backfill (#19387) feat(avm): mutate enqueued calls (#19315) chore(avm): migrate to BB asserts (#19395) fix!: more missing boolean constraints in calldata, calldata hashing, sha256 mem PILs (#19367) feat(avm): defensively assert cd hashes (#19346) chore: annotate booleans in PIL, and add some missing boolean constraints (#19371) fix!: missing boolean constraints on zero checks targets (#19401) fix!: context did not constrain returndata size to 0 at start, and had a misnamed relation (#19404) END_COMMIT_OVERRIDE

Adds mutation for enqueued calls including teardown.
Also restructuring and cleaning up the
tx_datafile