@@ -57,7 +57,9 @@ type BoldConfig struct {
57
57
// How often to scan for newly created assertions onchain.
58
58
AssertionScanningInterval time.Duration `koanf:"assertion-scanning-interval"`
59
59
// How often to confirm assertions onchain.
60
- AssertionConfirmingInterval time.Duration `koanf:"assertion-confirming-interval"`
60
+ AssertionConfirmingInterval time.Duration `koanf:"assertion-confirming-interval"`
61
+ // How long to wait since parent assertion was created to post a new assertion
62
+ MinimumGapToParentAssertion time.Duration `koanf:"minimum-gap-to-parent-assertion"`
61
63
API bool `koanf:"api"`
62
64
APIHost string `koanf:"api-host"`
63
65
APIPort uint16 `koanf:"api-port"`
@@ -98,6 +100,7 @@ var DefaultBoldConfig = BoldConfig{
98
100
AssertionPostingInterval : time .Minute * 15 ,
99
101
AssertionScanningInterval : time .Minute ,
100
102
AssertionConfirmingInterval : time .Minute ,
103
+ MinimumGapToParentAssertion : time .Minute , // Correct default?
101
104
API : false ,
102
105
APIHost : "127.0.0.1" ,
103
106
APIPort : 9393 ,
@@ -121,6 +124,7 @@ func BoldConfigAddOptions(prefix string, f *flag.FlagSet) {
121
124
f .Duration (prefix + ".assertion-posting-interval" , DefaultBoldConfig .AssertionPostingInterval , "assertion posting interval" )
122
125
f .Duration (prefix + ".assertion-scanning-interval" , DefaultBoldConfig .AssertionScanningInterval , "scan assertion interval" )
123
126
f .Duration (prefix + ".assertion-confirming-interval" , DefaultBoldConfig .AssertionConfirmingInterval , "confirm assertion interval" )
127
+ f .Duration (prefix + ".minimum-gap-to-parent-assertion" , DefaultBoldConfig .MinimumGapToParentAssertion , "minimum duration to wait since the parent assertion was created to post a new assertion" )
124
128
f .Duration (prefix + ".check-staker-switch-interval" , DefaultBoldConfig .CheckStakerSwitchInterval , "how often to check if staker can switch to bold" )
125
129
f .Bool (prefix + ".api" , DefaultBoldConfig .API , "enable api" )
126
130
f .String (prefix + ".api-host" , DefaultBoldConfig .APIHost , "bold api host" )
@@ -455,6 +459,7 @@ func newBOLDChallengeManager(
455
459
challengemanager .StackWithPollingInterval (scanningInterval ),
456
460
challengemanager .StackWithPostingInterval (postingInterval ),
457
461
challengemanager .StackWithConfirmationInterval (confirmingInterval ),
462
+ challengemanager .StackWithMinimumGapToParentAssertion (config .MinimumGapToParentAssertion ),
458
463
challengemanager .StackWithTrackChallengeParentAssertionHashes (config .TrackChallengeParentAssertionHashes ),
459
464
challengemanager .StackWithHeaderProvider (l1Reader ),
460
465
}
0 commit comments