We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b8361 commit 11277cdCopy full SHA for 11277cd
programs/compressed-token/src/process_transfer.rs
@@ -838,11 +838,9 @@ pub mod transfer_sdk {
838
system_program: solana_sdk::system_program::ID,
839
};
840
841
- let mut all_accounts = [accounts.to_account_metas(Some(true)), remaining_accounts].concat();
842
- all_accounts.push(AccountMeta::new(mint, false));
843
Ok(Instruction {
844
program_id: crate::ID,
845
- accounts: all_accounts,
+ accounts: [accounts.to_account_metas(Some(true)), remaining_accounts].concat(),
846
data: instruction_data,
847
})
848
}
0 commit comments