Skip to content

Commit 307cc28

Browse files
authored
solana: use custody balance (#125)
Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
1 parent 3c5c6c6 commit 307cc28

File tree

2 files changed

+3
-3
lines changed
  • solana/programs/matching-engine/src

2 files changed

+3
-3
lines changed

solana/programs/matching-engine/src/composite/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ pub struct ClosePreparedOrderResponse<'info> {
534534
],
535535
bump,
536536
)]
537-
pub custody_token: UncheckedAccount<'info>,
537+
pub custody_token: Box<Account<'info, token::TokenAccount>>,
538538
}
539539

540540
impl<'info> VaaDigest for ClosePreparedOrderResponse<'info> {

solana/programs/matching-engine/src/processor/auction/settle/none/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use common::messages::Fill;
1515

1616
struct SettleNoneAndPrepareFill<'ctx, 'info> {
1717
prepared_order_response: &'ctx mut Account<'info, PreparedOrderResponse>,
18-
prepared_custody_token: &'ctx UncheckedAccount<'info>,
18+
prepared_custody_token: &'ctx Account<'info, token::TokenAccount>,
1919
auction: &'ctx mut Account<'info, Auction>,
2020
fee_recipient_token: &'ctx Account<'info, token::TokenAccount>,
2121
custodian: &'ctx CheckedCustodian<'info>,
@@ -101,7 +101,7 @@ fn settle_none_and_prepare_fill(
101101
});
102102

103103
Ok(SettledNone {
104-
user_amount: prepared_order_response.amount_in.saturating_sub(fee),
104+
user_amount: prepared_custody_token.amount.saturating_sub(fee),
105105
fill: Fill {
106106
source_chain: prepared_order_response.source_chain,
107107
order_sender: prepared_order_response.sender,

0 commit comments

Comments
 (0)