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

feat(driver): rename a flag #760

Merged
merged 2 commits into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading