Skip to content

Commit

Permalink
Merge pull request #52 from crytic/dev-fix-empty-call
Browse files Browse the repository at this point in the history
Fix support for empty call
  • Loading branch information
tuturu-tech authored May 8, 2024
2 parents 4b1510d + 8d62de4 commit 4509238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz_utils/generate/fuzzers/Echidna.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _parse_call_object(self, call_dict: dict[Any, Any]) -> tuple[str, str]:
caller = call_dict["src"]

if call_dict["call"]["tag"] == "NoCall":
template = jinja2.Template(templates["EMPTY"])
template = jinja2.Template(templates["EMPTY_CALL"])
call_str = template.render(time_delay=time_delay, block_delay=block_delay)
return (call_str, "")

Expand Down

0 comments on commit 4509238

Please sign in to comment.