Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
feat(driver): rename a flag (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Apr 24, 2024
1 parent 524cc8e commit 9f3f4c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/flags/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
// Optional flags used by driver.
var (
P2PSyncVerifiedBlocks = &cli.BoolFlag{
Name: "p2p.syncVerifiedBlocks",
Usage: "Try P2P syncing verified blocks between L2 execution engines, " +
Name: "p2p.sync",
Usage: "Try P2P syncing blocks between L2 execution engines, " +
"will be helpful to bring a new node online quickly",
Value: false,
Category: driverCategory,
EnvVars: []string{"P2P_SYNC_VERIFIED_BLOCKS"},
EnvVars: []string{"P2P_SYNC"},
}
P2PSyncTimeout = &cli.DurationFlag{
Name: "p2p.syncTimeout",
Expand Down

0 comments on commit 9f3f4c8

Please sign in to comment.