Remove logging

pull/755/head
Bernhard Mueller 6 years ago
parent 80c7e75862
commit bc925328d4
  1. 4
      mythril/analysis/modules/suicide.py

@ -66,15 +66,11 @@ class SuicideModule(DetectionModule):
transaction_sequence = solver.get_transaction_sequence(
state, constraints + [to == ARBITRARY_SENDER_ADDRESS]
)
logging.debug(
"[SUICIDE] To address can't be set. " + node.function_name
)
description = "The contract can be killed by anyone and the attacker can withdraw its balance."
except UnsatError:
transaction_sequence = solver.get_transaction_sequence(
state, constraints
)
logging.debug("[SUICIDE] To address can be set. " + node.function_name)
description = "The contract can be killed by anyone."
debug = "Transaction Sequence: " + str(transaction_sequence)

Loading…
Cancel
Save