Skip to content

Commit bc15a5d

Browse files
committed
fix ci
1 parent 309dcd7 commit bc15a5d

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

system_tests/bold_challenge_protocol_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,9 @@ func testChallengeProtocolBOLD(t *testing.T, spawnerOpts ...server_arb.SpawnerOp
222222
CheckBatchFinality: false,
223223
},
224224
goodDir,
225+
l2nodeA.InboxTracker,
226+
l2nodeA.TxStreamer,
227+
l2nodeA.InboxReader,
225228
)
226229
Require(t, err)
227230

@@ -235,6 +238,9 @@ func testChallengeProtocolBOLD(t *testing.T, spawnerOpts ...server_arb.SpawnerOp
235238
CheckBatchFinality: false,
236239
},
237240
evilDir,
241+
l2nodeB.InboxTracker,
242+
l2nodeB.TxStreamer,
243+
l2nodeB.InboxReader,
238244
)
239245
Require(t, err)
240246

system_tests/bold_l3_support_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@ func startL3BoldChallengeManager(t *testing.T, ctx context.Context, builder *Nod
214214
CheckBatchFinality: false,
215215
},
216216
cacheDir,
217+
node.ConsensusNode.InboxTracker,
218+
node.ConsensusNode.TxStreamer,
219+
node.ConsensusNode.InboxReader,
217220
)
218221
Require(t, err)
219222

system_tests/bold_new_challenge_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,9 @@ func startBoldChallengeManager(t *testing.T, ctx context.Context, builder *NodeB
292292
CheckBatchFinality: false,
293293
},
294294
cacheDir,
295+
node.ConsensusNode.InboxTracker,
296+
node.ConsensusNode.TxStreamer,
297+
node.ConsensusNode.InboxReader,
295298
)
296299
Require(t, err)
297300

system_tests/bold_state_provider_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,9 @@ func setupBoldStateProvider(t *testing.T, ctx context.Context, blockChallengeHei
417417
CheckBatchFinality: false,
418418
},
419419
dir,
420+
l2node.InboxTracker,
421+
l2node.TxStreamer,
422+
l2node.InboxReader,
420423
)
421424
Require(t, err)
422425

system_tests/overflow_assertions_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ func TestOverflowAssertions(t *testing.T) {
131131
CheckBatchFinality: false,
132132
},
133133
goodDir,
134+
l2node.InboxTracker,
135+
l2node.TxStreamer,
136+
l2node.InboxReader,
134137
)
135138
Require(t, err)
136139

0 commit comments

Comments
 (0)