@@ -21,7 +21,7 @@ import (
2121func  TestOutputCannonGame (t  * testing.T ) {
2222	op_e2e .InitParallel (t , op_e2e .UsesCannon )
2323	ctx  :=  context .Background ()
24- 	sys , l1Client  :=  startFaultDisputeSystem (t )
24+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
2525	t .Cleanup (sys .Close )
2626
2727	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -77,7 +77,7 @@ func TestOutputCannon_ChallengeAllZeroClaim(t *testing.T) {
7777	// The dishonest actor always posts claims with all zeros. 
7878	op_e2e .InitParallel (t , op_e2e .UsesCannon )
7979	ctx  :=  context .Background ()
80- 	sys , l1Client  :=  startFaultDisputeSystem (t )
80+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
8181	t .Cleanup (sys .Close )
8282
8383	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -116,7 +116,7 @@ func TestOutputCannon_PublishCannonRootClaim(t *testing.T) {
116116			op_e2e .InitParallel (t , op_e2e .UsesCannon )
117117
118118			ctx  :=  context .Background ()
119- 			sys , _  :=  startFaultDisputeSystem (t )
119+ 			sys , _  :=  StartFaultDisputeSystem (t )
120120
121121			disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
122122			game  :=  disputeGameFactory .StartOutputCannonGame (ctx , "sequencer" , test .disputeL2BlockNumber , common.Hash {0x01 })
@@ -147,7 +147,7 @@ func TestOutputCannonDisputeGame(t *testing.T) {
147147			op_e2e .InitParallel (t , op_e2e .UsesCannon )
148148
149149			ctx  :=  context .Background ()
150- 			sys , l1Client  :=  startFaultDisputeSystem (t )
150+ 			sys , l1Client  :=  StartFaultDisputeSystem (t )
151151			t .Cleanup (sys .Close )
152152
153153			disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -184,7 +184,7 @@ func TestOutputCannonDefendStep(t *testing.T) {
184184	op_e2e .InitParallel (t , op_e2e .UsesCannon )
185185
186186	ctx  :=  context .Background ()
187- 	sys , l1Client  :=  startFaultDisputeSystem (t )
187+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
188188	t .Cleanup (sys .Close )
189189
190190	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -220,7 +220,7 @@ func TestOutputCannonStepWithLargePreimage(t *testing.T) {
220220	op_e2e .InitParallel (t , op_e2e .UsesCannon )
221221
222222	ctx  :=  context .Background ()
223- 	sys , _  :=  startFaultDisputeSystem (t , withBatcherStopped ())
223+ 	sys , _  :=  StartFaultDisputeSystem (t , WithBatcherStopped ())
224224	t .Cleanup (sys .Close )
225225
226226	// Manually send a tx from the correct batcher key to the batcher input with very large (invalid) data 
@@ -263,7 +263,7 @@ func TestOutputCannonStepWithPreimage(t *testing.T) {
263263		op_e2e .InitParallel (t , op_e2e .UsesCannon )
264264
265265		ctx  :=  context .Background ()
266- 		sys , _  :=  startFaultDisputeSystem (t , withBlobBatches ())
266+ 		sys , _  :=  StartFaultDisputeSystem (t , WithBlobBatches ())
267267		t .Cleanup (sys .Close )
268268
269269		disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -306,7 +306,7 @@ func TestOutputCannonStepWithKZGPointEvaluation(t *testing.T) {
306306		op_e2e .InitParallel (t , op_e2e .UsesCannon )
307307
308308		ctx  :=  context .Background ()
309- 		sys , _  :=  startFaultDisputeSystem (t , withEcotone ())
309+ 		sys , _  :=  StartFaultDisputeSystem (t , WithEcotone ())
310310		t .Cleanup (sys .Close )
311311
312312		// NOTE: Flake prevention 
@@ -315,7 +315,7 @@ func TestOutputCannonStepWithKZGPointEvaluation(t *testing.T) {
315315		require .NoError (t , err )
316316		require .NoError (t , wait .ForSafeBlock (ctx , sys .RollupClient ("sequencer" ), safeBlock .NumberU64 ()+ 3 ))
317317
318- 		receipt  :=  sendKZGPointEvaluationTx (t , sys , "sequencer" , sys .Cfg .Secrets .Alice )
318+ 		receipt  :=  SendKZGPointEvaluationTx (t , sys , "sequencer" , sys .Cfg .Secrets .Alice )
319319		precompileBlock  :=  receipt .BlockNumber 
320320		t .Logf ("KZG Point Evaluation block number: %d" , precompileBlock )
321321
@@ -406,7 +406,7 @@ func TestOutputCannonProposedOutputRootValid(t *testing.T) {
406406			op_e2e .InitParallel (t , op_e2e .UsesCannon )
407407
408408			ctx  :=  context .Background ()
409- 			sys , l1Client  :=  startFaultDisputeSystem (t )
409+ 			sys , l1Client  :=  StartFaultDisputeSystem (t )
410410			t .Cleanup (sys .Close )
411411
412412			disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -440,7 +440,7 @@ func TestOutputCannonPoisonedPostState(t *testing.T) {
440440	op_e2e .InitParallel (t , op_e2e .UsesCannon )
441441
442442	ctx  :=  context .Background ()
443- 	sys , l1Client  :=  startFaultDisputeSystem (t )
443+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
444444	t .Cleanup (sys .Close )
445445
446446	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -504,7 +504,7 @@ func TestDisputeOutputRootBeyondProposedBlock_ValidOutputRoot(t *testing.T) {
504504	op_e2e .InitParallel (t , op_e2e .UsesCannon )
505505
506506	ctx  :=  context .Background ()
507- 	sys , l1Client  :=  startFaultDisputeSystem (t )
507+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
508508	t .Cleanup (sys .Close )
509509
510510	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -554,7 +554,7 @@ func TestDisputeOutputRootBeyondProposedBlock_InvalidOutputRoot(t *testing.T) {
554554	op_e2e .InitParallel (t , op_e2e .UsesCannon )
555555
556556	ctx  :=  context .Background ()
557- 	sys , l1Client  :=  startFaultDisputeSystem (t )
557+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
558558	t .Cleanup (sys .Close )
559559
560560	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -605,7 +605,7 @@ func TestDisputeOutputRoot_ChangeClaimedOutputRoot(t *testing.T) {
605605	op_e2e .InitParallel (t , op_e2e .UsesCannon )
606606
607607	ctx  :=  context .Background ()
608- 	sys , l1Client  :=  startFaultDisputeSystem (t )
608+ 	sys , l1Client  :=  StartFaultDisputeSystem (t )
609609	t .Cleanup (sys .Close )
610610
611611	disputeGameFactory  :=  disputegame .NewFactoryHelper (t , ctx , sys )
@@ -693,7 +693,7 @@ func TestInvalidateUnsafeProposal(t *testing.T) {
693693		test  :=  test 
694694		t .Run (test .name , func (t  * testing.T ) {
695695			op_e2e .InitParallel (t , op_e2e .UsesCannon )
696- 			sys , l1Client  :=  startFaultDisputeSystem (t , withSequencerWindowSize (100000 ), withBatcherStopped ())
696+ 			sys , l1Client  :=  StartFaultDisputeSystem (t , WithSequencerWindowSize (100000 ), WithBatcherStopped ())
697697			t .Cleanup (sys .Close )
698698
699699			blockNum  :=  uint64 (1 )
@@ -755,7 +755,7 @@ func TestInvalidateProposalForFutureBlock(t *testing.T) {
755755		test  :=  test 
756756		t .Run (test .name , func (t  * testing.T ) {
757757			op_e2e .InitParallel (t , op_e2e .UsesCannon )
758- 			sys , l1Client  :=  startFaultDisputeSystem (t , withSequencerWindowSize (100000 ))
758+ 			sys , l1Client  :=  StartFaultDisputeSystem (t , WithSequencerWindowSize (100000 ))
759759			t .Cleanup (sys .Close )
760760
761761			farFutureBlockNum  :=  uint64 (10_000_000 )
0 commit comments