We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c6739 commit 916a472Copy full SHA for 916a472
mythril/analysis/report.py
@@ -182,7 +182,7 @@ def resolve_function_names(self):
182
183
try:
184
sig = signatures.get(_hash)
185
-
+ # TODO: Check other mythx tools for dependency before supporting multiple possible function names
186
if len(sig) > 0:
187
step["name"] = sig[0]
188
else:
mythril/disassembler/disassembly.py
@@ -97,7 +97,7 @@ def get_function_info(
97
function_names = signature_database.get(function_hash)
98
99
if len(function_names) > 0:
100
- function_name = function_names[0]
+ function_name = " or ".join(function_names)
101
102
function_name = "_function_" + function_hash
103
0 commit comments