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 lazer/Cargo.lock

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

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyth-lazer-solana-contract"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
description = "Pyth Lazer Solana contract and SDK."
license = "Apache-2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ pub struct VerifyMessage<'info> {
)]
pub storage: Account<'info, Storage>,
/// CHECK: this account doesn't need additional constraints.
#[account(mut)]
pub treasury: AccountInfo<'info>,
pub system_program: Program<'info, System>,
/// CHECK: account ID is checked in Solana SDK during calls
Expand All @@ -280,6 +281,7 @@ pub struct VerifyEcdsaMessage<'info> {
)]
pub storage: Account<'info, Storage>,
/// CHECK: this account doesn't need additional constraints.
#[account(mut)]
pub treasury: AccountInfo<'info>,
pub system_program: Program<'info, System>,
}
Expand Down
Loading