From ffebf00114e1da39828b5b9452a4353e7700915e Mon Sep 17 00:00:00 2001 From: cdetrio Date: Tue, 25 Jul 2017 13:06:56 -0400 Subject: core/vm/runtime: fix evm command to use --gasprice flag value --- core/vm/runtime/env.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3