aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/factory.go
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2020-08-19 23:48:47 -0400
committerDeterminant <tederminant@gmail.com>2020-08-19 23:48:47 -0400
commit2d409cb9790e55fd014546222f448786bbefa46b (patch)
tree4b6906f93b546f7911ac23bf3665c6fe823f2c5c /plugin/evm/factory.go
parentc6fbdb0dc9453bf4dbf43490d7d83b7a4de2f182 (diff)
...
Diffstat (limited to 'plugin/evm/factory.go')
-rw-r--r--plugin/evm/factory.go8
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,
}
}