From 264d9b08349290b53aaf2f5cfb20d49aa2dd60f3 Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Alapont Date: Tue, 7 Feb 2023 21:26:31 -0600 Subject: [PATCH 1/2] Add ignored --- pyth-sdk-solana/src/state.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyth-sdk-solana/src/state.rs b/pyth-sdk-solana/src/state.rs index cee0ce1..2d77a83 100644 --- a/pyth-sdk-solana/src/state.rs +++ b/pyth-sdk-solana/src/state.rs @@ -133,6 +133,8 @@ pub enum PriceStatus { Halted, /// The price feed is not currently updating because an auction is setting the price. Auction, + /// A price component can be ignored if the confidence interval is too wide + Ignored, } impl Default for PriceStatus { From 1bb15477571dccd82c32d5afdb80034bc1ff7b8b Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Alapont Date: Wed, 8 Feb 2023 11:40:54 -0600 Subject: [PATCH 2/2] Bump cargo.toml --- pyth-sdk-solana/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyth-sdk-solana/Cargo.toml b/pyth-sdk-solana/Cargo.toml index 9afd6cb..3413f58 100644 --- a/pyth-sdk-solana/Cargo.toml +++ b/pyth-sdk-solana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-sdk-solana" -version = "0.7.0" +version = "0.7.1" authors = ["Pyth Data Foundation"] edition = "2018" license = "Apache-2.0"