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/vm/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/vm/evm.go')
-rw-r--r-- | core/vm/evm.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/vm/evm.go b/core/vm/evm.go index 422d52ccb..6b2844020 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -101,6 +101,7 @@ type Context struct { Time *big.Int // Provides information for TIME Randomness []byte // Provides information for RAND Difficulty *big.Int // Provides information for DIFFICULTY + Round *big.Int // Current round number. RandCallIndex uint64 // Number of times opRand is called } |