aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-02-27 19:17:58 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-02-27 19:17:58 +0800
commit46eea4d10533f9376e0d36255dfc1083e28d5bbc (patch)
tree4f80e73cfe0577cd83649446f2021857d9f41b2f /accounts/abi
parent0a63c3e3625e9f5e18f6c2a95934a37b1dcac6c7 (diff)
downloadgo-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar
go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.gz
go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.bz2
go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.lz
go-tangerine-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.xz
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.go2
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")
}