Skip to content

Commit 4f60017

Browse files
authored
Merge branch 'master' into large_distance
2 parents 9ed65e6 + 41ad6fa commit 4f60017

6 files changed

+12
-2
lines changed

arbnode/node.go

+2
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ func ConfigDefaultL1NonSequencerTest() *Config {
212212
config.Staker = legacystaker.TestL1ValidatorConfig
213213
config.Staker.Enable = false
214214
config.BlockValidator.ValidationServerConfigs = []rpcclient.ClientConfig{{URL: ""}}
215+
config.Bold.MinimumGapToParentAssertion = 0
215216

216217
return &config
217218
}
@@ -230,6 +231,7 @@ func ConfigDefaultL2Test() *Config {
230231
config.Staker.Enable = false
231232
config.BlockValidator.ValidationServerConfigs = []rpcclient.ClientConfig{{URL: ""}}
232233
config.TransactionStreamer = DefaultTransactionStreamerConfig
234+
config.Bold.MinimumGapToParentAssertion = 0
233235

234236
return &config
235237
}

staker/bold/bold_staker.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ type BoldConfig struct {
5757
// How often to scan for newly created assertions onchain.
5858
AssertionScanningInterval time.Duration `koanf:"assertion-scanning-interval"`
5959
// 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"`
6163
API bool `koanf:"api"`
6264
APIHost string `koanf:"api-host"`
6365
APIPort uint16 `koanf:"api-port"`
@@ -98,6 +100,7 @@ var DefaultBoldConfig = BoldConfig{
98100
AssertionPostingInterval: time.Minute * 15,
99101
AssertionScanningInterval: time.Minute,
100102
AssertionConfirmingInterval: time.Minute,
103+
MinimumGapToParentAssertion: time.Minute, // Correct default?
101104
API: false,
102105
APIHost: "127.0.0.1",
103106
APIPort: 9393,
@@ -121,6 +124,7 @@ func BoldConfigAddOptions(prefix string, f *flag.FlagSet) {
121124
f.Duration(prefix+".assertion-posting-interval", DefaultBoldConfig.AssertionPostingInterval, "assertion posting interval")
122125
f.Duration(prefix+".assertion-scanning-interval", DefaultBoldConfig.AssertionScanningInterval, "scan assertion interval")
123126
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")
124128
f.Duration(prefix+".check-staker-switch-interval", DefaultBoldConfig.CheckStakerSwitchInterval, "how often to check if staker can switch to bold")
125129
f.Bool(prefix+".api", DefaultBoldConfig.API, "enable api")
126130
f.String(prefix+".api-host", DefaultBoldConfig.APIHost, "bold api host")
@@ -455,6 +459,7 @@ func newBOLDChallengeManager(
455459
challengemanager.StackWithPollingInterval(scanningInterval),
456460
challengemanager.StackWithPostingInterval(postingInterval),
457461
challengemanager.StackWithConfirmationInterval(confirmingInterval),
462+
challengemanager.StackWithMinimumGapToParentAssertion(config.MinimumGapToParentAssertion),
458463
challengemanager.StackWithTrackChallengeParentAssertionHashes(config.TrackChallengeParentAssertionHashes),
459464
challengemanager.StackWithHeaderProvider(l1Reader),
460465
}

system_tests/bold_challenge_protocol_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ func testChallengeProtocolBOLD(t *testing.T, spawnerOpts ...server_arb.SpawnerOp
417417
challengemanager.StackWithMode(modes.MakeMode),
418418
challengemanager.StackWithPostingInterval(time.Second * 3),
419419
challengemanager.StackWithPollingInterval(time.Second),
420+
challengemanager.StackWithMinimumGapToParentAssertion(0),
420421
challengemanager.StackWithAverageBlockCreationTime(time.Second),
421422
}
422423

system_tests/bold_new_challenge_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ func startBoldChallengeManager(t *testing.T, ctx context.Context, builder *NodeB
344344
challengemanager.StackWithPostingInterval(time.Second * 3),
345345
challengemanager.StackWithPollingInterval(time.Second),
346346
challengemanager.StackWithAverageBlockCreationTime(time.Second),
347+
challengemanager.StackWithMinimumGapToParentAssertion(0),
347348
}
348349

349350
challengeManager, err := challengemanager.NewChallengeStack(

system_tests/overflow_assertions_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ func TestOverflowAssertions(t *testing.T) {
224224
challengemanager.StackWithPostingInterval(time.Second),
225225
challengemanager.StackWithPollingInterval(time.Millisecond * 500),
226226
challengemanager.StackWithAverageBlockCreationTime(time.Second),
227+
challengemanager.StackWithMinimumGapToParentAssertion(0),
227228
}
228229

229230
manager, err := challengemanager.NewChallengeStack(

0 commit comments

Comments
 (0)