accounts, eth/downloader: use "err" instead of "error" in logs

This commit is contained in:
Péter Szilágyi
2017-02-27 13:17:58 +02:00
parent 0a63c3e362
commit 46eea4d105
5 changed files with 23 additions and 23 deletions

View File

@ -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")
}