Skip to content

Commit

Permalink
Merge pull request #2877 from OffchainLabs/fix-sequencer-trie-prefetcher
Browse files Browse the repository at this point in the history
Enable the geth trie prefetcher for the sequencer
  • Loading branch information
PlasmaPower authored Jan 14, 2025
2 parents b023e8f + 84bfafa commit 6b72a7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions execution/gethexec/executionengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ func (s *ExecutionEngine) sequenceTransactionsWithBlockMutex(header *arbostypes.
if err != nil {
return nil, err
}
statedb.StartPrefetcher("Sequencer")
defer statedb.StopPrefetcher()

delayedMessagesRead := lastBlockHeader.Nonce.Uint64()

Expand Down

0 comments on commit 6b72a7f

Please sign in to comment.