Skip to content

Commit

Permalink
Merge pull request #1927 from OffchainLabs/default-250ms-max-block-speed
Browse files Browse the repository at this point in the history
Change default sequencer MaxBlockSpeed to 250ms
  • Loading branch information
PlasmaPower authored Oct 17, 2023
2 parents 7c8eae8 + 39bcbd7 commit 68d1742
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 @@ -85,7 +85,7 @@ type SequencerConfigFetcher func() *SequencerConfig

var DefaultSequencerConfig = SequencerConfig{
Enable: false,
MaxBlockSpeed: time.Millisecond * 100,
MaxBlockSpeed: time.Millisecond * 250,
MaxRevertGasReject: params.TxGas + 10000,
MaxAcceptableTimestampDelta: time.Hour,
Forwarder: DefaultSequencerForwarderConfig,
Expand Down

0 comments on commit 68d1742

Please sign in to comment.