diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-02-25 19:35:06 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:03 +0800 |
commit | a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58 (patch) | |
tree | 34b35cadcc10da359acce130848fb08023a79638 /core/evm.go | |
parent | 775393eea8e5d0509536e1a0cb1c68e6d3425581 (diff) | |
download | dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar.gz dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar.bz2 dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar.lz dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar.xz dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.tar.zst dexon-a85a386fbfb093bc8b0dd92b8a7b0fc5f5d92b58.zip |
core: vm: flatten governance
Diffstat (limited to 'core/evm.go')
-rw-r--r-- | core/evm.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/evm.go b/core/evm.go index 04bc173f5..a2b61c535 100644 --- a/core/evm.go +++ b/core/evm.go @@ -67,6 +67,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), + Round: new(big.Int).SetUint64(header.Round), GasLimit: header.GasLimit, GasPrice: new(big.Int).Set(msg.GasPrice()), } |