GetAccountNonce implements interfaces/Transaction.GetAccountNonce.
()
| 46 | |
| 47 | // GetAccountNonce implements interfaces/Transaction.GetAccountNonce. |
| 48 | func (b *BaseAccount) GetAccountNonce() pi.AccountNonce { |
| 49 | // BaseAccount nonce is not counted, always return 0. |
| 50 | return pi.AccountNonce(0) |
| 51 | } |
| 52 | |
| 53 | // Hash implements interfaces/Transaction.Hash. |
| 54 | func (b *BaseAccount) Hash() (h hash.Hash) { |
no outgoing calls