diff options
author | Determinant <[email protected]> | 2020-07-02 01:36:18 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-07-02 01:36:18 -0400 |
commit | ca6847998d867dc5d66e76a03bda9c72ae8d287b (patch) | |
tree | c6eb50a6e8c2d441d77468492c797c6c59885c46 /core/vm/jump_table.go | |
parent | 2d396b3c69a26e4096ccb376c012911d299c68c7 (diff) |
make MultiCoin.transfer work
Diffstat (limited to 'core/vm/jump_table.go')
-rw-r--r-- | core/vm/jump_table.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index 359b753..737dd14 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -183,6 +183,7 @@ func newTangerineWhistleInstructionSet() JumpTable { instructionSet[SLOAD].constantGas = params.SloadGasEIP150 instructionSet[EXTCODECOPY].constantGas = params.ExtcodeCopyBaseEIP150 instructionSet[CALL].constantGas = params.CallGasEIP150 + instructionSet[CALLEX].constantGas = params.CallGasEIP150 instructionSet[CALLCODE].constantGas = params.CallGasEIP150 instructionSet[DELEGATECALL].constantGas = params.CallGasEIP150 return instructionSet @@ -1147,7 +1148,7 @@ func newFrontierInstructionSet() JumpTable { dynamicGas: gasCall, minStack: minStack(9, 1), maxStack: maxStack(9, 1), - memorySize: memoryCall, + memorySize: memoryCallExpert, valid: true, returns: true, }, |