diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-07-26 15:40:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-26 15:40:05 +0800 |
commit | fc78ce61c0bda324ab297f910d84fa833c1564f6 (patch) | |
tree | 04ad09aa4f43b483c9cad64b9b16a76cd9fcf756 | |
parent | f4841ff43dda9f41a47ec94b5a5356023eec59d4 (diff) | |
parent | ffebf00114e1da39828b5b9452a4353e7700915e (diff) | |
download | go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.gz go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.zst go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.zip |
Merge pull request #14859 from cdetrio/evm-flag-gasprice
core/vm/runtime: fix evm command to use --gasprice flag value
-rw-r--r-- | core/vm/runtime/env.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/runtime/env.go b/core/vm/runtime/env.go index 9aa88e669..7b41fe85a 100644 --- a/core/vm/runtime/env.go +++ b/core/vm/runtime/env.go @@ -37,7 +37,7 @@ func NewEnv(cfg *Config, state *state.StateDB) *vm.EVM { Time: cfg.Time, Difficulty: cfg.Difficulty, GasLimit: new(big.Int).SetUint64(cfg.GasLimit), - GasPrice: new(big.Int), + GasPrice: cfg.GasPrice, } return vm.NewEVM(context, cfg.State, cfg.ChainConfig, cfg.EVMConfig) |