core/vm/runtime: fix evm command to use --gasprice flag value

pull/14859/head
cdetrio 7 years ago
parent f4841ff43d
commit ffebf00114
  1. 2
      core/vm/runtime/env.go

@ -37,7 +37,7 @@ func NewEnv(cfg *Config, state *state.StateDB) *vm.EVM {
Time: cfg.Time, Time: cfg.Time,
Difficulty: cfg.Difficulty, Difficulty: cfg.Difficulty,
GasLimit: new(big.Int).SetUint64(cfg.GasLimit), GasLimit: new(big.Int).SetUint64(cfg.GasLimit),
GasPrice: new(big.Int), GasPrice: cfg.GasPrice,
} }
return vm.NewEVM(context, cfg.State, cfg.ChainConfig, cfg.EVMConfig) return vm.NewEVM(context, cfg.State, cfg.ChainConfig, cfg.EVMConfig)

Loading…
Cancel
Save