Skip to content

Commit

Permalink
Fix aggregate confidence interval (#51)
Browse files Browse the repository at this point in the history
* Fix aggregate confidence interval

* New version
  • Loading branch information
guibescos authored Jan 30, 2023
1 parent 89ce4bf commit b737cdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.1.5"
version = "0.1.6"
description = "Alerts and stuff"
authors = []
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion pyth_observer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ async def run(self):
symbol=product.attrs["symbol"],
public_key=component.publisher_key,
confidence_interval=component.latest_price_info.confidence_interval,
confidence_interval_aggregate=component.last_aggregate_price_info.confidence_interval,
confidence_interval_aggregate=price_account.aggregate_price_info.confidence_interval,
price=component.latest_price_info.price,
price_aggregate=price_account.aggregate_price_info.price,
slot=component.latest_price_info.pub_slot,
Expand Down

0 comments on commit b737cdc

Please sign in to comment.