diff options
author | BJ4 <bojie@dexon.org> | 2018-11-09 12:08:17 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:56 +0800 |
commit | d9382bd0ee655e10ff3108983e5a98d30e058868 (patch) | |
tree | 6f47d9ceb8d40fa748e4b65adf14a169ad692aaf /core/evm.go | |
parent | a9320c957b0224b6faaedbe3ccb7720f21bb0f40 (diff) | |
download | dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar.gz dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar.bz2 dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar.lz dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar.xz dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.tar.zst dexon-d9382bd0ee655e10ff3108983e5a98d30e058868.zip |
app: fix core test
Diffstat (limited to 'core/evm.go')
-rw-r--r-- | core/evm.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/evm.go b/core/evm.go index 7e25e1d52..5e8cf9063 100644 --- a/core/evm.go +++ b/core/evm.go @@ -18,6 +18,7 @@ package core import ( "math/big" + "reflect" "sync" "github.com/dexon-foundation/dexon/common" @@ -48,6 +49,12 @@ func NewEVMContext(msg Message, header *types.Header, chain ChainContext, author } else { beneficiary = *author } + + var roundHeight sync.Map + if !reflect.ValueOf(chain).IsNil() { + roundHeight = chain.GetRoundHeightMap() + } + return vm.Context{ CanTransfer: CanTransfer, Transfer: Transfer, @@ -58,7 +65,7 @@ func NewEVMContext(msg Message, header *types.Header, chain ChainContext, author Time: new(big.Int).SetUint64(header.Time), Randomness: header.Randomness, Difficulty: new(big.Int).Set(header.Difficulty), - RoundHeight: chain.GetRoundHeightMap(), + RoundHeight: roundHeight, GasLimit: header.GasLimit, GasPrice: new(big.Int).Set(msg.GasPrice()), } |