mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
core: fix contract is always false even when tx is contract creaction.
This commit is contained in:
parent
fc5f8a3dda
commit
5f65109c7d
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue