diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-02-25 19:35:06 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 4ce8adb190ae3351a507be54f38afa6b47ce18a3 (patch) | |
tree | 585b6f4bb5ee06b0fdab0f8e68f34e15b6ae0fed /core/vm/evm.go | |
parent | 0ac79d780ba63c574d648552f887c9411fdd76fe (diff) | |
download | dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar.gz dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar.bz2 dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar.lz dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar.xz dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.tar.zst dexon-4ce8adb190ae3351a507be54f38afa6b47ce18a3.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 } |