File tree 2 files changed +3
-3
lines changed
solana/programs/matching-engine/src
processor/auction/settle/none
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ pub struct ClosePreparedOrderResponse<'info> {
534
534
] ,
535
535
bump,
536
536
) ]
537
- pub custody_token : UncheckedAccount < ' info > ,
537
+ pub custody_token : Box < Account < ' info , token :: TokenAccount > > ,
538
538
}
539
539
540
540
impl < ' info > VaaDigest for ClosePreparedOrderResponse < ' info > {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use common::messages::Fill;
15
15
16
16
struct SettleNoneAndPrepareFill < ' ctx , ' info > {
17
17
prepared_order_response : & ' ctx mut Account < ' info , PreparedOrderResponse > ,
18
- prepared_custody_token : & ' ctx UncheckedAccount < ' info > ,
18
+ prepared_custody_token : & ' ctx Account < ' info , token :: TokenAccount > ,
19
19
auction : & ' ctx mut Account < ' info , Auction > ,
20
20
fee_recipient_token : & ' ctx Account < ' info , token:: TokenAccount > ,
21
21
custodian : & ' ctx CheckedCustodian < ' info > ,
@@ -101,7 +101,7 @@ fn settle_none_and_prepare_fill(
101
101
} ) ;
102
102
103
103
Ok ( SettledNone {
104
- user_amount : prepared_order_response . amount_in . saturating_sub ( fee) ,
104
+ user_amount : prepared_custody_token . amount . saturating_sub ( fee) ,
105
105
fill : Fill {
106
106
source_chain : prepared_order_response. source_chain ,
107
107
order_sender : prepared_order_response. sender ,
You can’t perform that action at this time.
0 commit comments