Skip to content

Commit 1fab5ac

Browse files
committed
Remove debugging logs
1 parent 8d4da32 commit 1fab5ac

File tree

1 file changed

+0
-10
lines changed
  • solana/programs/staking/src

1 file changed

+0
-10
lines changed

solana/programs/staking/src/lib.rs

-10
Original file line numberDiff line numberDiff line change
@@ -700,14 +700,6 @@ pub mod staking {
700700
bump: ctx.bumps.message_received,
701701
});
702702

703-
msg!(
704-
"Remaining accounts: {:?}",
705-
ctx.remaining_accounts
706-
.iter()
707-
.map(|a| a.key)
708-
.collect::<Vec<_>>()
709-
);
710-
711703
// Execute the instructions in the message.
712704
for instruction in posted_vaa.payload.1.instructions.clone() {
713705
// Prepare AccountInfo vector for the instruction.
@@ -716,8 +708,6 @@ pub mod staking {
716708
for meta in &instruction.accounts {
717709
let meta_pubkey = Pubkey::new_from_array(meta.pubkey);
718710

719-
msg!("meta_pubkey: {:?}", meta_pubkey);
720-
721711
let account_info = ctx
722712
.remaining_accounts
723713
.iter()

0 commit comments

Comments
 (0)