accounts/abi/bind/backends: remove unused assignment

This commit is contained in:
Felix Lange 2019-11-21 15:57:06 +01:00
parent b6d4f6b66e
commit c8b51a2020

View file

@ -72,7 +72,7 @@ func TestSimulatedBackend(t *testing.T) {
}
sim.Commit()
tx, isPending, err = sim.TransactionByHash(context.Background(), txHash)
_, isPending, err = sim.TransactionByHash(context.Background(), txHash)
if err != nil {
t.Fatalf("error getting transaction with hash: %v", txHash.String())
}