Skip to content

Commit

Permalink
Merge pull request #1763 from OffchainLabs/fix-delayed-sequencer-defa…
Browse files Browse the repository at this point in the history
…ult-config

fix default value of delayed-sequencer.enable
  • Loading branch information
PlasmaPower committed Jul 14, 2023
2 parents 33692fd + 6ed5aec commit 41fd4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbnode/delayed_sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type DelayedSequencerConfig struct {
type DelayedSequencerConfigFetcher func() *DelayedSequencerConfig

func DelayedSequencerConfigAddOptions(prefix string, f *flag.FlagSet) {
f.Bool(prefix+".enable", DefaultSeqCoordinatorConfig.Enable, "enable sequence coordinator")
f.Bool(prefix+".enable", DefaultDelayedSequencerConfig.Enable, "enable delayed sequencer")
f.Int64(prefix+".finalize-distance", DefaultDelayedSequencerConfig.FinalizeDistance, "how many blocks in the past L1 block is considered final (ignored when using Merge finality)")
f.Bool(prefix+".require-full-finality", DefaultDelayedSequencerConfig.RequireFullFinality, "whether to wait for full finality before sequencing delayed messages")
f.Bool(prefix+".use-merge-finality", DefaultDelayedSequencerConfig.UseMergeFinality, "whether to use The Merge's notion of finality before sequencing delayed messages")
Expand Down

0 comments on commit 41fd4df

Please sign in to comment.