good morning!!!!

Skip to content
Snippets Groups Projects
Commit ffebf001 authored by Casey Detrio's avatar Casey Detrio
Browse files

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

parent f4841ff4
Branches
Tags
No related merge requests found
...@@ -37,7 +37,7 @@ func NewEnv(cfg *Config, state *state.StateDB) *vm.EVM { ...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment