mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-22 15:59:26 +00:00
core/types: fix create indicator in Transaction.String (#15025)
This commit is contained in:
parent
ff9a868232
commit
68955ed2eb
1 changed files with 1 additions and 1 deletions
|
|
@ -300,7 +300,7 @@ func (tx *Transaction) String() string {
|
||||||
Hex: %x
|
Hex: %x
|
||||||
`,
|
`,
|
||||||
tx.Hash(),
|
tx.Hash(),
|
||||||
len(tx.data.Recipient) == 0,
|
tx.data.Recipient == nil,
|
||||||
from,
|
from,
|
||||||
to,
|
to,
|
||||||
tx.data.AccountNonce,
|
tx.data.AccountNonce,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue