mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-17 05:26:36 +00:00
Merge pull request #14859 from cdetrio/evm-flag-gasprice
core/vm/runtime: fix evm command to use --gasprice flag value
This commit is contained in:
commit
fc78ce61c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue