diff options
Diffstat (limited to 'core/vm/jump_table.go')
-rw-r--r-- | core/vm/jump_table.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index da158027a..608e34419 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -301,6 +301,12 @@ func newFrontierInstructionSet() [256]operation { memorySize: memorySha3, valid: true, }, + RAND: { + execute: opRand, + gasCost: constGasFunc(params.RandGas), + validateStack: makeStackFunc(0, 1), + valid: true, + }, ADDRESS: { execute: opAddress, gasCost: constGasFunc(GasQuickStep), |