Skip to content
Merged
Show file tree
Hide file tree
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ignore_missing_imports = true

[tool.poetry]
name = "pyth-observer"
version = "0.3.1"
version = "0.3.2"
description = "Alerts and stuff"
authors = []
readme = "README.md"
Expand Down
5 changes: 0 additions & 5 deletions pyth_observer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@ async def run(self):
states = []
price_accounts = await self.get_pyth_prices(product)

# If the min_publishers is set to 255, this is a "coming soon" feed and is not live yet
# Skip alerting on these feeds
if product.prices[PythPriceType.PRICE].min_publishers == 255:
continue

crosschain_price = crosschain_prices.get(
b58decode(product.first_price_account_key.key).hex(), None
)
Expand Down
Loading