From 0b60243fbc03bbfc2aceb8933ae9901d4b385117 Mon Sep 17 00:00:00 2001 From: David Date: Sun, 28 May 2023 14:45:05 +0800 Subject: [PATCH] fix(flag): add a missing driver flag to configuration (#246) --- cmd/flags/driver.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/flags/driver.go b/cmd/flags/driver.go index 2b9b48c6e..b84d64362 100644 --- a/cmd/flags/driver.go +++ b/cmd/flags/driver.go @@ -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{ @@ -50,4 +50,5 @@ var DriverFlags = MergeFlags(CommonFlags, []cli.Flag{ JWTSecret, P2PSyncVerifiedBlocks, P2PSyncTimeout, + CheckPointSyncUrl, })