mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 05:56:37 +00:00
accounts/abi/bind/backends: remove unused assignment (#20359)
This commit is contained in:
parent
c1db636fb3
commit
bcc1234778
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