aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/factory.go
blob: daedf390b5a10872cff0e4694c0e5c4c93e25536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.

package evm

import "github.com/ava-labs/avalanchego/ids"

// ID this VM should be referenced by
var (
	ID = ids.ID{'e', 'v', 'm'}
)

// Factory ...
type Factory struct {
	Fee uint64
}

// New ...
func (f *Factory) New() interface{} {
	return &VM{
		txFee: f.Fee,
	}
}