We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90f52a commit a49518dCopy full SHA for a49518d
pyth_observer/__init__.py
@@ -90,6 +90,12 @@ async def run(self):
90
# for each publisher).
91
states = []
92
price_accounts = await self.get_pyth_prices(product)
93
+
94
+ # If the min_publishers is set to 255, this is a "coming soon" feed and is not live yet
95
+ # Skip alerting on these feeds
96
+ if product.prices[PythPriceType.PRICE].min_publishers == 255:
97
+ continue
98
99
crosschain_price = crosschain_prices.get(
100
b58decode(product.first_price_account_key.key).hex(), None
101
)
0 commit comments