pull/1730/head
webthethird 2 years ago
parent 772710cded
commit 9e70c3ff88
  1. 2
      slither/core/declarations/contract.py

@ -966,7 +966,7 @@ class Contract(SourceMapping): # pylint: disable=too-many-public-methods
if func.is_constructor or func.is_fallback or func.is_receive: if func.is_constructor or func.is_fallback or func.is_receive:
continue continue
interface += f" function {func.interface_signature_str};\n" interface += f" function {func.interface_signature_str};\n"
interface += "}\n" interface += "}\n\n"
return interface return interface
# endregion # endregion

Loading…
Cancel
Save