aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/tx.go
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2020-08-20 00:27:32 -0400
committerDeterminant <tederminant@gmail.com>2020-08-20 00:27:32 -0400
commiteeb62be039927d461bcd5bebc456e3ab1a31307c (patch)
treed8419578e56c7e1d9ebdd76112966bab45f935ab /plugin/evm/tx.go
parent9f503c997bdb67a40ac2817c6cf0eb780a86f3c1 (diff)
move nonce to EVMOutput/Input
Diffstat (limited to 'plugin/evm/tx.go')
-rw-r--r--plugin/evm/tx.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/evm/tx.go b/plugin/evm/tx.go
index 7e60c79..789ce56 100644
--- a/plugin/evm/tx.go
+++ b/plugin/evm/tx.go
@@ -33,6 +33,7 @@ var (
type EVMOutput struct {
Address common.Address `serialize:"true" json:"address"`
Amount uint64 `serialize:"true" json:"amount"`
+ Nonce uint64 `serialize:"true" json:"nonce"`
}
func (out *EVMOutput) Verify() error {