Skip to content

Commit

Permalink
Serialize without prepended length in cli calldata with --array argum…
Browse files Browse the repository at this point in the history
…ent (#257)
  • Loading branch information
tekkac authored Dec 2, 2024
1 parent eb9be30 commit 9191854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydra/garaga/starknet/cli/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ def calldata(
if format == CalldataFormat.starkli:
print(" ".join([str(x) for x in calldata]))
elif format == CalldataFormat.array:
print(calldata)
print(calldata[1:])

0 comments on commit 9191854

Please sign in to comment.