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

support hex parameters in Account.send #253

Merged
merged 3 commits into from
Oct 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/nile/core/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def _get_target_address(self, address_or_alias):
return target_address

def _process_arguments(self, calldata, max_fee, nonce):
calldata = [int(x) for x in calldata]
calldata = [normalize_number(x) for x in calldata]

if nonce is None:
nonce = get_nonce(self.address, self.network)
Expand Down