mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
accounts/abi/bind/backends: remove unused assignment
This commit is contained in:
parent
b6d4f6b66e
commit
c8b51a2020
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ func TestSimulatedBackend(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
sim.Commit()
|
sim.Commit()
|
||||||
tx, isPending, err = sim.TransactionByHash(context.Background(), txHash)
|
_, isPending, err = sim.TransactionByHash(context.Background(), txHash)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("error getting transaction with hash: %v", txHash.String())
|
t.Fatalf("error getting transaction with hash: %v", txHash.String())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue