aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-07-26 15:40:05 +0800
committerGitHub <noreply@github.com>2017-07-26 15:40:05 +0800
commitfc78ce61c0bda324ab297f910d84fa833c1564f6 (patch)
tree04ad09aa4f43b483c9cad64b9b16a76cd9fcf756
parentf4841ff43dda9f41a47ec94b5a5356023eec59d4 (diff)
parentffebf00114e1da39828b5b9452a4353e7700915e (diff)
downloadgo-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar
go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.gz
go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.bz2
go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.lz
go-tangerine-fc78ce61c0bda324ab297f910d84fa833c1564f6.tar.xz
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.go2
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)