Skip to content

Commit

Permalink
Bump version to 0.1.5 and remove debug print statement from BaseContract
Browse files Browse the repository at this point in the history
  • Loading branch information
trizin authored Feb 17, 2025
1 parent ab09a81 commit b8d9d8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion predictoor_data/contract/base_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class BaseContract(ABC):
def __init__(self, web3_config:Web3Config, address: str, contract_name: str):
super().__init__()
self.web3_config = web3_config
print(f"Loading contract {contract_name} at address {address}")
current_dir = pathlib.Path(__file__).parent
abi_path = current_dir / ".." / "abis" / f"{contract_name}.json"
with open(abi_path) as f:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="predictoor-data",
version="0.1.4",
version="0.1.5",
author="oceanprotocol",
author_email="[email protected]",
packages=find_packages(),
Expand Down

0 comments on commit b8d9d8a

Please sign in to comment.