Skip to content

Commit

Permalink
remove unused prints
Browse files Browse the repository at this point in the history
  • Loading branch information
yvesfracari committed Apr 16, 2024
1 parent 1d1fcde commit b6da53a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cow_py/codegen/components/base_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@ def __init__(self, address: str, chain: Chain, abi: List[Any] = None):
:param chain: The chain the contract is deployed on
:param abi: The ABI of the contract, optional
"""
print(dir(self))
if not hasattr(self, "_initialized"): # Avoid re-initialization
# Initialize the instance (only the first time)
print("initializing")
self.contract_loader = ContractLoader(chain)
self.web3_contract = self.contract_loader.get_web3_contract(
address, abi or self.ABI or []
Expand Down

0 comments on commit b6da53a

Please sign in to comment.