diff options
author | Determinant <[email protected]> | 2020-08-20 00:03:12 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-20 00:03:12 -0400 |
commit | 0c417aaa02c5cc8bb6a9629ac2502e0c4d200071 (patch) | |
tree | 8aa8c257ed613872131527b7ec036e548da60128 /plugin/evm/tx.go | |
parent | 2d409cb9790e55fd014546222f448786bbefa46b (diff) |
impl state transfer for C-to-X Tx
Diffstat (limited to 'plugin/evm/tx.go')
-rw-r--r-- | plugin/evm/tx.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/tx.go b/plugin/evm/tx.go index dfd49f0..7e60c79 100644 --- a/plugin/evm/tx.go +++ b/plugin/evm/tx.go @@ -65,7 +65,7 @@ type UnsignedAtomicTx interface { // Accept this transaction with the additionally provided state transitions. Accept(ctx *snow.Context, batch database.Batch) error - EVMStateTransfer(state *state.StateDB) + EVMStateTransfer(state *state.StateDB) error } // Tx is a signed transaction |