Open
Conversation
feat(blobrecovery): added basefee to blob recovery mode
Zkevm to 2.64
fix(ci): add write perms for google oidc
don't pull GCR images in CI for kurtosis
turn off hive tests for release/* branches
…ind-pmt-2.64 unwind to correct block when unwinding pmt on rpc
fix: gas price tracker crash on race
Fix gas tracker test for 2.64.1
…2.64 Merge/hotfix 2.64 to release 2.64
The debug_traceCall RPC method was crashing with "method handler crashed" when called with a tracer config that didn't include the Reexec field. Root cause: In TraceCall(), the code checked `if config == nil || isLatest` before using CreateStateReader, but the else branch dereferenced `*config.Reexec` without checking if Reexec was nil. Fix: Add `|| config.Reexec == nil` to the condition to use the current state reader when Reexec is not provided. Also includes defensive checks in the call tracer: - Check for empty callstack in CaptureState before accessing it - Check for empty callstack in CaptureExit before appending - Bounds check in fixLogIndexGap to prevent out-of-bounds access - Added tests for these edge cases
Merge/debug tracecall crash fix
…ase-2.64 # Conflicts: # turbo/jsonrpc/eth_system_gas_tracking.go # zk/stages/stage_sequence_execute_blocks.go
elliothllm
approved these changes
Feb 18, 2026
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.
This PR merges the entire release/2.64 branch into zkevm, covering all missing commits up to v2.64.2. Conflicts in gas tracking and sequence execution were resolved while keeping zkevm logic intact.