From 68955ed2eb12165416411dc30b1ac4d74aa49307 Mon Sep 17 00:00:00 2001 From: nkbai Date: Thu, 24 Aug 2017 18:48:13 +0800 Subject: core/types: fix create indicator in Transaction.String (#15025) --- core/types/transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/transaction.go b/core/types/transaction.go index 8e108b2a3..947fc85d6 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -300,7 +300,7 @@ func (tx *Transaction) String() string { Hex: %x `, tx.Hash(), - len(tx.data.Recipient) == 0, + tx.data.Recipient == nil, from, to, tx.data.AccountNonce, -- cgit