Skip to content

Commit

Permalink
Merge pull request #2213 from OffchainLabs/no-default-revert-reject
Browse files Browse the repository at this point in the history
Set default --execution.sequencer.max-revert-gas-reject=0
  • Loading branch information
joshuacolvin0 authored Apr 1, 2024
2 parents 69fd6fe + 7680874 commit fc0feea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execution/gethexec/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ type SequencerConfigFetcher func() *SequencerConfig
var DefaultSequencerConfig = SequencerConfig{
Enable: false,
MaxBlockSpeed: time.Millisecond * 250,
MaxRevertGasReject: params.TxGas + 10000,
MaxRevertGasReject: 0,
MaxAcceptableTimestampDelta: time.Hour,
Forwarder: DefaultSequencerForwarderConfig,
QueueSize: 1024,
Expand Down

0 comments on commit fc0feea

Please sign in to comment.