diff options
author | aaronbuchwald <[email protected]> | 2020-12-15 21:31:57 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-15 21:31:57 -0500 |
commit | 3f055c40405b44ba1e606578c08b1e8f0ca7e026 (patch) | |
tree | 6569bcfe3a62f3804a4f90b803b3d0d6cd96d732 /plugin/evm/vm.go | |
parent | 2d0a37c6490dc9a4ec36ee4ebbed01c790f0426a (diff) | |
parent | 7c758da302baf80775876008958ec77055ab953a (diff) |
Merge pull request #56 from ava-labs/mc-transfer
Mc transfer
Diffstat (limited to 'plugin/evm/vm.go')
-rw-r--r-- | plugin/evm/vm.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index c9bdad9..9f5607a 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -239,6 +239,14 @@ func (vm *VM) Initialize( return err } + // If Mainnet or Fuji ChainID is present then switch + // manually set the config + switch { + case g.Config.ChainID.Cmp(params.AvalancheMainnetChainID) == 0: + g.Config.ApricotBlockTimestamp = params.AvalancheMainnetApricotTimestamp + case g.Config.ChainID.Cmp(params.AvalancheFujiChainID) == 0: + g.Config.ApricotBlockTimestamp = params.AvalancheFujiApricotTimestamp + } vm.acceptedDB = prefixdb.New([]byte(acceptedPrefix), db) vm.chainID = g.Config.ChainID |