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" 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 {