Skip to content

Commit fa54737

Browse files
Fix golint errors
1 parent 396e716 commit fa54737

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

espresso/environment/14_duplicate_batcher_inbox_contract_test.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ func setupBatchInboxEnv(ctx context.Context, t *testing.T) (*e2esys.System, *bin
5252
GasPrice: gasPrice,
5353
})
5454
signedTx, _ := types.SignTx(tx, types.NewEIP155Signer(chainID), system.Cfg.Secrets.Deployer)
55-
l1.SendTransaction(ctx, signedTx)
56-
bind.WaitMined(ctx, l1, signedTx)
55+
err = l1.SendTransaction(ctx, signedTx)
56+
require.NoError(t, err)
57+
_, err = bind.WaitMined(ctx, l1, signedTx)
58+
require.NoError(t, err)
5759
}
5860

5961
return system, inbox, chainID

0 commit comments

Comments
 (0)