diff options
author | cdetrio <cdetrio@gmail.com> | 2017-07-26 01:06:56 +0800 |
---|---|---|
committer | cdetrio <cdetrio@gmail.com> | 2017-07-26 01:08:29 +0800 |
commit | ffebf00114e1da39828b5b9452a4353e7700915e (patch) | |
tree | 04ad09aa4f43b483c9cad64b9b16a76cd9fcf756 /core | |
parent | f4841ff43dda9f41a47ec94b5a5356023eec59d4 (diff) | |
download | go-tangerine-ffebf00114e1da39828b5b9452a4353e7700915e.tar.gz go-tangerine-ffebf00114e1da39828b5b9452a4353e7700915e.tar.zst go-tangerine-ffebf00114e1da39828b5b9452a4353e7700915e.zip |
core/vm/runtime: fix evm command to use --gasprice flag value
Diffstat (limited to 'core')
-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) |