Remove string prefix from debugging output

pull/760/head
Bernhard Mueller 6 years ago
parent 1884d4c79f
commit ecc305102b
  1. 2
      mythril/analysis/modules/ether_thief.py
  2. 2
      mythril/analysis/modules/exceptions.py
  3. 4
      mythril/analysis/modules/integer.py
  4. 2
      mythril/analysis/modules/suicide.py

@ -78,7 +78,7 @@ class EtherThief(DetectionModule):
], ],
) )
debug = "Transaction Sequence: " + str(transaction_sequence) debug = str(transaction_sequence)
issue = Issue( issue = Issue(
contract=node.contract_name, contract=node.contract_name,

@ -42,7 +42,7 @@ class ReachableExceptionsModule(DetectionModule):
"Use `require()` for regular input checking." "Use `require()` for regular input checking."
) )
debug = "Transaction Sequence: " + str( debug = str(
solver.get_transaction_sequence(state, node.constraints) solver.get_transaction_sequence(state, node.constraints)
) )

@ -108,7 +108,7 @@ class IntegerOverflowUnderflowModule(DetectionModule):
operator operator
) )
try: try:
issue.debug = "Transaction Sequence: " + str( issue.debug = str(
solver.get_transaction_sequence(state, node.constraints + [constraint]) solver.get_transaction_sequence(state, node.constraints + [constraint])
) )
except UnsatError: except UnsatError:
@ -223,7 +223,7 @@ class IntegerOverflowUnderflowModule(DetectionModule):
"The subtraction can result in an integer underflow.\n" "The subtraction can result in an integer underflow.\n"
) )
issue.debug = "Transaction Sequence: " + str( issue.debug = str(
solver.get_transaction_sequence(state, node.constraints) solver.get_transaction_sequence(state, node.constraints)
) )
issues.append(issue) issues.append(issue)

@ -46,7 +46,7 @@ def _analyze_state(state):
"The contract can be killed by anyone. Don't accidentally kill it." "The contract can be killed by anyone. Don't accidentally kill it."
) )
debug = "Transaction Sequence: " + str(transaction_sequence) debug = str(transaction_sequence)
issue = Issue( issue = Issue(
contract=node.contract_name, contract=node.contract_name,

Loading…
Cancel
Save