Skip to content

Commit

Permalink
readd system test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
afkbyte committed Jun 4, 2024
1 parent 047d4f7 commit c25e017
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions system_tests/full_challenge_impl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,19 @@ func setupSequencerInboxStub(ctx context.Context, t *testing.T, l1Info *Blockcha
DelaySeconds: big.NewInt(10000),
FutureSeconds: big.NewInt(10000),
}

// func DeployEigenDAServiceManagerStub(auth *bind.TransactOpts, backend bind.ContractBackend, __avsDirectory common.Address, __paymentCoordinator common.Address, __registryCoordinator common.Address, __stakeRegistry common.Address, _pauserRegistry common.Address, _initialPausedStatus *big.Int, _initialOwner common.Address, _batchConfirmers []common.Address) (common.Address, *types.Transaction, *EigenDAServiceManagerStub, error) {

svcManagerAddr, tx, _, err := mocksgen.DeployEigenDAServiceManagerStub(&txOpts, l1Client, common.Address{}, common.Address{}, common.Address{}, common.Address{}, common.Address{}, big.NewInt(0), l1Info.GetAddress("deployer"), []common.Address{})
Require(t, err)
_, err = EnsureTxSucceeded(ctx, l1Client, tx)

// Require(t, err)
// _, err = EnsureTxSucceeded(ctx, l1Client, tx)

// DeploySequencerInbox(auth, client, maxDataSize, reader4844, dummyManager, dummyManager, isUsingFeeToken)
// func DeploySequencerInboxStub(auth *bind.TransactOpts, backend bind.ContractBackend, bridge_ common.Address, sequencer_ common.Address, maxTimeVariation_ ISequencerInboxMaxTimeVariation, maxDataSize_ *big.Int, reader4844_ common.Address, eigenDAServiceManager_ common.Address, eigenDARollupManager_ common.Address, isUsingFeeToken_ bool) (common.Address, *types.Transaction, *SequencerInboxStub, error) {

seqInboxAddr, tx, seqInbox, err := mocksgen.DeploySequencerInboxStub(
&txOpts,
l1Client,
Expand All @@ -219,6 +232,8 @@ func setupSequencerInboxStub(ctx context.Context, t *testing.T, l1Info *Blockcha
timeBounds,
big.NewInt(117964),
reader4844,
svcManagerAddr,
svcManagerAddr,
false,
)
Require(t, err)
Expand Down

0 comments on commit c25e017

Please sign in to comment.