Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Update src/nile/core/declare.py
Browse files Browse the repository at this point in the history
  • Loading branch information
martriay authored Nov 16, 2022
1 parent ee0a44a commit f27558e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nile/core/declare.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def declare(
file = f"{network}.{DECLARATIONS_FILENAME}"
raise Exception(f"Alias {alias} already exists in {file}")

max_fee = "0" if max_fee is None else int(max_fee)
max_fee = 0 if max_fee is None else int(max_fee)

output = await execute_call(
"declare",
Expand Down

0 comments on commit f27558e

Please sign in to comment.