Skip to content

Commit

Permalink
fix: op-node sync default value
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoieh committed Apr 28, 2024
1 parent dfa91fa commit 02b1ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions op-node/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,15 +308,15 @@ var (
Name: "l2.engine-sync",
Usage: "WARNING: Deprecated. Use --syncmode=execution-layer instead",
EnvVars: prefixEnvVars("L2_ENGINE_SYNC_ENABLED"),
Value: true,
Value: false,
Hidden: true,
}
SkipSyncStartCheck = &cli.BoolFlag{
Name: "l2.skip-sync-start-check",
Usage: "Skip sanity check of consistency of L1 origins of the unsafe L2 blocks when determining the sync-starting point. " +
"This defers the L1-origin verification, and is recommended to use in when utilizing l2.engine-sync",
EnvVars: prefixEnvVars("L2_SKIP_SYNC_START_CHECK"),
Value: true,
Value: false,
Hidden: true,
}
BetaExtraNetworks = &cli.BoolFlag{
Expand Down

0 comments on commit 02b1ede

Please sign in to comment.