diff options
Diffstat (limited to 'core/vm/evm.go')
-rw-r--r-- | core/vm/evm.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/vm/evm.go b/core/vm/evm.go index 64f71e530..2eba9c2cb 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -101,6 +101,8 @@ type Context struct { Time *big.Int // Provides information for TIME Randomness []byte // Provides information for RAND Difficulty *big.Int // Provides information for DIFFICULTY + + RandCallIndex uint64 // Number of times opRand is called } // EVM is the Ethereum Virtual Machine base object and provides |