feat(avm): mutate enqueued calls#19315
Merged
IlyasRidhuan merged 1 commit intoJan 7, 2026
Merged
Conversation
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
d34e98d to
e1ca69a
Compare
This was referenced Jan 6, 2026
8325579 to
5ab4f28
Compare
IlyasRidhuan
commented
Jan 7, 2026
| extern "C" int LLVMFuzzerInitialize(int*, char***) | ||
| { | ||
| FuzzerWorldStateManager::initialize(); | ||
| std::filesystem::create_directories("proving_inputs"); |
Contributor
Author
There was a problem hiding this comment.
this was unused and should have been cleaned up
IlyasRidhuan
commented
Jan 7, 2026
| } 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()); |
Contributor
Author
There was a problem hiding this comment.
this gets too noisy otherwise
5ab4f28 to
b884d8f
Compare
b884d8f to
998b6c7
Compare
Merged
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Jan 8, 2026
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

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