Skip to content

Commit 11fb25b

Browse files
author
Bengt Lofgren
committed
forgot to add file
1 parent 588f18f commit 11fb25b

File tree

1 file changed

+4
-4
lines changed
  • solana/programs/matching-engine/src/processor/auction/execute_fast_order

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ pub struct ActiveAuctionAccountInfos<'ix> {
105105
pub auction_custodian: AccountInfo<'ix>,
106106
}
107107

108-
pub fn get_user_amount_and_new_status_and_penalized<'ix>(
108+
pub fn get_user_amount_and_new_status_and_penalized(
109109
auction: &Auction,
110110
custody_token: &TokenAccount,
111111
auction_config: &AuctionConfig,
112112
init_auction_fee: u64,
113-
active_auction_account_infos: ActiveAuctionAccountInfos<'ix>,
113+
active_auction_account_infos: ActiveAuctionAccountInfos<'_>,
114114
accounts: &[AccountInfo],
115115
) -> Result<(u64, AuctionStatus, bool)> {
116116
let auction_info = auction.info.as_ref().unwrap();
@@ -288,9 +288,9 @@ pub fn get_user_amount_and_new_status_and_penalized<'ix>(
288288
))
289289
}
290290

291-
pub fn get_order_executed_event<'ix>(
291+
pub fn get_order_executed_event(
292292
auction: &Auction,
293-
fast_vaa: &AccountInfo<'ix>,
293+
fast_vaa: &AccountInfo<'_>,
294294
auction_info: &AuctionInfo,
295295
penalized: bool,
296296
) -> OrderExecuted {

0 commit comments

Comments
 (0)