From 46eea4d10533f9376e0d36255dfc1083e28d5bbc Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Mon, 27 Feb 2017 13:17:58 +0200 Subject: accounts, eth/downloader: use "err" instead of "error" in logs --- accounts/abi/bind/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'accounts/abi/bind/util.go') 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") } -- cgit