aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-02-28 22:55:37 +0800
committerGitHub <noreply@github.com>2017-02-28 22:55:37 +0800
commit94c71c171f6c4de1f6f041bf1aadef2a377e10a3 (patch)
treedd4a0ddcc1f41268ab22eb50e5d0329855ab1196 /accounts/abi
parent5f7826270c9e87509fd7731ec64953a5e4761de0 (diff)
parentb117da2db3e2a7c557fa6f95c49aa041a973a563 (diff)
downloadgo-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar.gz
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar.bz2
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar.lz
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar.xz
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.tar.zst
go-tangerine-94c71c171f6c4de1f6f041bf1aadef2a377e10a3.zip
Merge pull request #3723 from karalabe/logger-updates-2
Logger updates
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 50b7a6f02..8348f6980 100644
--- a/accounts/abi/bind/util.go
+++ b/accounts/abi/bind/util.go
@@ -32,7 +32,7 @@ func WaitMined(ctx context.Context, b DeployBackend, tx *types.Transaction) (*ty
queryTicker := time.NewTicker(time.Second)
defer queryTicker.Stop()
- logger := log.New("hash", tx.Hash().Hex()[:8])
+ logger := log.New("hash", tx.Hash())
for {
receipt, err := b.TransactionReceipt(ctx, tx.Hash())
if receipt != nil {