Skip to content

Commit

Permalink
fix unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Sep 25, 2023
1 parent 1fd0cdc commit ff2048f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/simulation/validate_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func checkCollectedL1Fees(t *testing.T, node ethadapter.EthClient, s *Simulation

l2FeesWallet := s.Params.Wallets.L2FeesWallet
obsClients := network.CreateAuthClients(s.RPCHandles.RPCClients, l2FeesWallet)
feeBalance, err := obsClients[nodeIdx].BalanceAt(context.Background(), nil)
_, err := obsClients[nodeIdx].BalanceAt(context.Background(), nil)
if err != nil {
panic(fmt.Errorf("failed getting balance for bridge transfer receiver. Cause: %w", err))
}
Expand Down

0 comments on commit ff2048f

Please sign in to comment.