Skip to content

Commit

Permalink
aerge remote-tracking branch 'origin/feat/create-calldata-cheatcode' …
Browse files Browse the repository at this point in the history
…into feat/create-calldata-cheatcode
  • Loading branch information
daejunpark committed Sep 9, 2024
2 parents 7124320 + 4dd4612 commit a30fd9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/halmos/calldata.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def mk_calldata(
fun_abi = find_abi(abi, fun_info)

# no parameters
if len(fun_abi["inputs"]) == 0:
if not fun_abi["inputs"]:
return

# generate symbolic ABI calldata
Expand Down

0 comments on commit a30fd9f

Please sign in to comment.