Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solana - Low & Informational #230

Merged
merged 15 commits into from
Jan 10, 2025
2 changes: 2 additions & 0 deletions solana/programs/staking/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,6 @@ pub enum MessageExecutorError {
InvalidWormholeChainId,
#[msg("The executed instructions exceeded max lamports")]
ExceededMaxLamports,
#[msg("The account owner of the signer was changed")]
SignerAccountOwernshipChanged,
}
5 changes: 5 additions & 0 deletions solana/programs/staking/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,11 @@ pub mod staking {
MessageExecutorError::ExceededMaxLamports
);

require!(
ctx.accounts.payer.owner.key() == ctx.accounts.system_program.key(),
MessageExecutorError::SignerAccountOwernshipChanged
);

Ok(())
}

Expand Down
Loading