diff options
author | Determinant <[email protected]> | 2020-08-19 23:48:47 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-19 23:48:47 -0400 |
commit | 2d409cb9790e55fd014546222f448786bbefa46b (patch) | |
tree | 4b6906f93b546f7911ac23bf3665c6fe823f2c5c /plugin/evm/factory.go | |
parent | c6fbdb0dc9453bf4dbf43490d7d83b7a4de2f182 (diff) |
...
Diffstat (limited to 'plugin/evm/factory.go')
-rw-r--r-- | plugin/evm/factory.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugin/evm/factory.go b/plugin/evm/factory.go index ae2ea27..6ae62ae 100644 --- a/plugin/evm/factory.go +++ b/plugin/evm/factory.go @@ -14,16 +14,12 @@ var ( // Factory ... type Factory struct { - AVAX ids.ID - AVM ids.ID - Fee uint64 + Fee uint64 } // New ... func (f *Factory) New() interface{} { return &VM{ - avaxAssetID: f.AVAX, - avm: f.AVM, - txFee: f.Fee, + txFee: f.Fee, } } |