diff options
author | Determinant <[email protected]> | 2020-08-19 23:42:43 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-19 23:42:43 -0400 |
commit | c6fbdb0dc9453bf4dbf43490d7d83b7a4de2f182 (patch) | |
tree | 3ab6bfd38159e9e1c4aee58eabf1c3d39108ad57 /plugin/evm/tx.go | |
parent | f3eb89cbe4611c9372ece05eaf5cb7a609954b8e (diff) |
clean up code
Diffstat (limited to 'plugin/evm/tx.go')
-rw-r--r-- | plugin/evm/tx.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/evm/tx.go b/plugin/evm/tx.go index 90cd232..dfd49f0 100644 --- a/plugin/evm/tx.go +++ b/plugin/evm/tx.go @@ -7,6 +7,8 @@ import ( "errors" "fmt" + "github.com/ava-labs/coreth/core/state" + "github.com/ava-labs/gecko/database" "github.com/ava-labs/gecko/ids" "github.com/ava-labs/gecko/snow" @@ -62,6 +64,8 @@ type UnsignedAtomicTx interface { // Accept this transaction with the additionally provided state transitions. Accept(ctx *snow.Context, batch database.Batch) error + + EVMStateTransfer(state *state.StateDB) } // Tx is a signed transaction |