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

Commit

Permalink
fix(flag): add a missing driver flag to configuration (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored May 28, 2023
1 parent fe86c0e commit 0b60243
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/flags/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (
Name: "p2p.syncTimeout",
Usage: "P2P syncing timeout in seconds, if no sync progress is made within this time span, " +
"driver will stop the P2P sync and insert all remaining L2 blocks one by one",
Value: 600,
Value: 1800,
Category: driverCategory,
}
CheckPointSyncUrl = &cli.StringFlag{
Expand All @@ -50,4 +50,5 @@ var DriverFlags = MergeFlags(CommonFlags, []cli.Flag{
JWTSecret,
P2PSyncVerifiedBlocks,
P2PSyncTimeout,
CheckPointSyncUrl,
})

0 comments on commit 0b60243

Please sign in to comment.