File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,16 @@ func TestChangeBatchInboxOwner(t *testing.T) {
6868 config , err := d .RollupConfig (ctx )
6969 require .NoError (t , err )
7070
71+ // Get the deployer's account to sign our next transaction with
72+ _ , deployer , err := d .SystemConfig (ctx )
73+ if err != nil {
74+ t .Fatal (err )
75+ }
76+
7177 // Change the BatchAuthenticator's owner
7278 batchAuthenticator , err := bindings .NewBatchAuthenticator (config .BatchAuthenticatorAddress , d .L1 )
7379 require .NoError (t , err )
74- tx , err := batchAuthenticator .TransferOwnership (& bind. TransactOpts {} , d .secrets .Addresses ().Bob )
80+ tx , err := batchAuthenticator .TransferOwnership (deployer , d .secrets .Addresses ().Bob )
7581 require .NoError (t , err )
7682 _ , err = d .SendL1Tx (ctx , tx )
7783 require .NoError (t , err )
You can’t perform that action at this time.
0 commit comments