File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
solana/programs/matching-engine/src/processor/auction/execute_fast_order Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,12 @@ pub struct ActiveAuctionAccountInfos<'ix> {
105
105
pub auction_custodian : AccountInfo < ' ix > ,
106
106
}
107
107
108
- pub fn get_user_amount_and_new_status_and_penalized < ' ix > (
108
+ pub fn get_user_amount_and_new_status_and_penalized (
109
109
auction : & Auction ,
110
110
custody_token : & TokenAccount ,
111
111
auction_config : & AuctionConfig ,
112
112
init_auction_fee : u64 ,
113
- active_auction_account_infos : ActiveAuctionAccountInfos < ' ix > ,
113
+ active_auction_account_infos : ActiveAuctionAccountInfos < ' _ > ,
114
114
accounts : & [ AccountInfo ] ,
115
115
) -> Result < ( u64 , AuctionStatus , bool ) > {
116
116
let auction_info = auction. info . as_ref ( ) . unwrap ( ) ;
@@ -288,9 +288,9 @@ pub fn get_user_amount_and_new_status_and_penalized<'ix>(
288
288
) )
289
289
}
290
290
291
- pub fn get_order_executed_event < ' ix > (
291
+ pub fn get_order_executed_event (
292
292
auction : & Auction ,
293
- fast_vaa : & AccountInfo < ' ix > ,
293
+ fast_vaa : & AccountInfo < ' _ > ,
294
294
auction_info : & AuctionInfo ,
295
295
penalized : bool ,
296
296
) -> OrderExecuted {
You can’t perform that action at this time.
0 commit comments