Remove logging messages, and a "pass"

pull/1177/head
palkeo 5 years ago
parent 49fbb5f82f
commit d22b791ba7
  1. 6
      mythril/analysis/modules/ether_thief.py
  2. 1
      mythril/laser/ethereum/state/account.py

@ -120,8 +120,6 @@ class EtherThief(DetectionModule):
state.current_transaction.caller == ATTACKER_ADDRESS,
]
log.debug("Constraints: %s", constraints)
try:
transaction_sequence = solver.get_transaction_sequence(state, constraints)
@ -145,10 +143,6 @@ class EtherThief(DetectionModule):
log.debug("No model found")
return []
log.debug("Found ether thief issue: %s", issue.as_dict)
log.debug("Model: %s", solver.pretty_print_model(solver.get_model(constraints)))
return [issue]

@ -99,7 +99,6 @@ class Storage:
return storage[item]
except ValueError as e:
log.debug("Couldn't read storage at %s: %s", item, e)
pass
return simplify(storage[item])

Loading…
Cancel
Save