diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-27 19:17:58 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-27 19:17:58 +0800 |
commit | 46eea4d10533f9376e0d36255dfc1083e28d5bbc (patch) | |
tree | 4f80e73cfe0577cd83649446f2021857d9f41b2f /accounts/abi | |
parent | 0a63c3e3625e9f5e18f6c2a95934a37b1dcac6c7 (diff) | |
download | go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.gz go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.zst go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.zip |
accounts, eth/downloader: use "err" instead of "error" in logs
Diffstat (limited to 'accounts/abi')
-rw-r--r-- | accounts/abi/bind/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/bind/util.go b/accounts/abi/bind/util.go index ca79694ef..50b7a6f02 100644 --- a/accounts/abi/bind/util.go +++ b/accounts/abi/bind/util.go @@ -39,7 +39,7 @@ func WaitMined(ctx context.Context, b DeployBackend, tx *types.Transaction) (*ty return receipt, nil } if err != nil { - logger.Trace("Receipt retrieval failed", "error", err) + logger.Trace("Receipt retrieval failed", "err", err) } else { logger.Trace("Transaction not yet mined") } |