Skip to content

Commit 89f424d

Browse files
authored
fix(lazer-protocol): Latest Price Inner Fields Public (#2231)
* Make inner fields public * Bump version for hopefully the last time * Bump lock file version too
1 parent 4621b98 commit 89f424d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lazer/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lazer/sdk/rust/protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-protocol"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
edition = "2021"
55
description = "Pyth Lazer SDK - protocol types."
66
license = "Apache-2.0"

lazer/sdk/rust/protocol/src/api.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ pub struct LatestPriceResponse {
2525
#[derive(Debug, Clone, Serialize, Deserialize)]
2626
#[serde(rename_all = "camelCase")]
2727
pub struct LatestPrice {
28-
id: PriceFeedId,
29-
prices: AggregatedPriceFeedData,
28+
pub id: PriceFeedId,
29+
pub prices: AggregatedPriceFeedData,
3030
}

0 commit comments

Comments
 (0)