diff --git a/lazer/sdk/rust/protocol/src/api.rs b/lazer/sdk/rust/protocol/src/api.rs index f13fb3c162..c1488b3877 100644 --- a/lazer/sdk/rust/protocol/src/api.rs +++ b/lazer/sdk/rust/protocol/src/api.rs @@ -25,6 +25,6 @@ pub struct LatestPriceResponse { #[derive(Debug, Clone, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct LatestPrice { - id: PriceFeedId, - prices: AggregatedPriceFeedData, + pub id: PriceFeedId, + pub prices: AggregatedPriceFeedData, }