Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 30, 2024
1 parent 64dd42c commit 256728e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdp/smart_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __repr__(self) -> str:
class TokenOptions:
"""Options for ERC20 token contracts."""

def __init__(self, name: str, symbol: str, total_supply: int | Decimal | str):
def __init__(self, name: str, symbol: str, total_supply: int | str):
self.name = name
self.symbol = symbol
self.total_supply = total_supply
Expand Down

0 comments on commit 256728e

Please sign in to comment.