Commit 96cf776f authored by obscuren's avatar obscuren

Check stack for BALANCE. Closes #622

parent 516423cd
...@@ -142,7 +142,7 @@ var _baseCheck = map[OpCode]req{ ...@@ -142,7 +142,7 @@ var _baseCheck = map[OpCode]req{
MSIZE: {0, GasQuickStep, true}, MSIZE: {0, GasQuickStep, true},
GAS: {0, GasQuickStep, true}, GAS: {0, GasQuickStep, true},
BLOCKHASH: {1, GasExtStep, true}, BLOCKHASH: {1, GasExtStep, true},
BALANCE: {0, GasExtStep, true}, BALANCE: {1, GasExtStep, true},
EXTCODESIZE: {1, GasExtStep, true}, EXTCODESIZE: {1, GasExtStep, true},
EXTCODECOPY: {4, GasExtStep, false}, EXTCODECOPY: {4, GasExtStep, false},
SLOAD: {1, GasStorageGet, true}, SLOAD: {1, GasStorageGet, true},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment