Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion target_chains/solana/pyth_solana_receiver_sdk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion target_chains/solana/pyth_solana_receiver_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyth-solana-receiver-sdk"
version = "1.0.0"
version = "1.0.1"
description = "SDK for the Pyth Solana Receiver program"
authors = ["Pyth Data Association"]
repository = "https://github.com/pyth-network/pyth-crosschain"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,8 @@ pub mod tests {

#[test]
fn check_size() {
#[allow(
deprecated,
reason = "borsh0_10 is deprecated, v1::get_packed_len should be used in the future"
)]
// borsh0_10 is deprecated, v1::get_packed_len should be used in the future
#[allow(deprecated)]
let len = PriceUpdateV2::DISCRIMINATOR.len() + borsh0_10::get_packed_len::<PriceUpdateV2>();
assert_eq!(len, PriceUpdateV2::LEN);
}
Expand Down
Loading