Skip to content

Commit

Permalink
track SSTORE'd accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
NIC619 committed Sep 13, 2017
1 parent 1278968 commit d687707
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ethereum/messages.py
Expand Up @@ -406,7 +406,6 @@ def _apply_msg(ext, msg, code):
if res == 0:
log_msg.debug('REVERTING')
ext.revert(snapshot)
# print("storage modified list:", ext.storage_modified_list)
return res, gas, dat


Expand Down
1 change: 0 additions & 1 deletion ethereum/vm.py
Expand Up @@ -530,7 +530,6 @@ def vm_execute(ext, msg, code):
# adds neg gascost as a refund if below zero
ext.add_refund(refund)
ext.set_storage_data(msg.to, s0, s1)
print("SSTORE at", msg.to)
ext.storage_modified_list.append(msg.to)
elif op == 'JUMP':
compustate.pc = stk.pop()
Expand Down

0 comments on commit d687707

Please sign in to comment.