Remove log for mstore8

pull/1118/head
Nikhil Parasaram 5 years ago
parent 2564fee18f
commit 3ea0c994ac
  1. 1
      mythril/laser/ethereum/instructions.py

@ -1380,7 +1380,6 @@ class Instruction:
) # type: Union[int, BitVec] ) # type: Union[int, BitVec]
except TypeError: # BitVec except TypeError: # BitVec
value_to_write = Extract(7, 0, value) value_to_write = Extract(7, 0, value)
log.debug("MSTORE8 to mem[" + str(offset) + "]: " + str(value_to_write))
state.memory[offset] = value_to_write state.memory[offset] = value_to_write

Loading…
Cancel
Save