Skip to content

Commit 944efad

Browse files
fix typo
1 parent 6289e38 commit 944efad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cdp/wallet_address.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def invoke_contract(
170170
ContractInvocation: The contract invocation object.
171171
172172
"""
173-
normalied_amount = Decimal(amount) if amount else Decimal("0")
173+
normalized_amount = Decimal(amount) if amount else Decimal("0")
174174

175175
if amount and asset_id:
176176
self._ensure_sufficient_balance(amount, asset_id)
@@ -183,7 +183,7 @@ def invoke_contract(
183183
method=method,
184184
abi=abi,
185185
args=args,
186-
amount=normalied_amount,
186+
amount=normalized_amount,
187187
asset_id=asset_id,
188188
)
189189

0 commit comments

Comments
 (0)