Skip to content

Commit

Permalink
Fix support for empty call
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed May 8, 2024
1 parent 4b1510d commit 8d62de4
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 8d62de4

Please sign in to comment.