We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d4da32 commit 1fab5acCopy full SHA for 1fab5ac
solana/programs/staking/src/lib.rs
@@ -700,14 +700,6 @@ pub mod staking {
700
bump: ctx.bumps.message_received,
701
});
702
703
- msg!(
704
- "Remaining accounts: {:?}",
705
- ctx.remaining_accounts
706
- .iter()
707
- .map(|a| a.key)
708
- .collect::<Vec<_>>()
709
- );
710
-
711
// Execute the instructions in the message.
712
for instruction in posted_vaa.payload.1.instructions.clone() {
713
// Prepare AccountInfo vector for the instruction.
@@ -716,8 +708,6 @@ pub mod staking {
716
for meta in &instruction.accounts {
717
let meta_pubkey = Pubkey::new_from_array(meta.pubkey);
718
719
- msg!("meta_pubkey: {:?}", meta_pubkey);
720
721
let account_info = ctx
722
.remaining_accounts
723
.iter()
0 commit comments