Skip to content

Commit e304bb2

Browse files
committed
solana: add comment about additional grace period
1 parent 334aee4 commit e304bb2

File tree

1 file changed

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

1 file changed

+13
-7
lines changed

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

+13-7
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,27 @@ fn prepare_order_execution<'info>(
5454

5555
let (user_amount, new_status, beneficiary) = {
5656
let auction_info = auction.info.as_ref().unwrap();
57-
5857
let current_slot = Clock::get().unwrap().slot;
58+
59+
// We extend the grace period for locally executed orders. Reserving a sequence number for
60+
// the fast fill will most likely require an additional transaction, so this buffer allows
61+
// the best offer participant to perform his duty without the risk of getting slashed by
62+
// another executor.
63+
let additional_grace_period = match auction.target_protocol {
64+
MessageProtocol::Local { .. } => {
65+
crate::EXECUTE_FAST_ORDER_LOCAL_ADDITIONAL_GRACE_PERIOD.into()
66+
}
67+
_ => None,
68+
};
69+
5970
let DepositPenalty {
6071
penalty,
6172
user_reward,
6273
} = utils::auction::compute_deposit_penalty(
6374
config,
6475
auction_info,
6576
current_slot,
66-
match auction.target_protocol {
67-
MessageProtocol::Local { .. } => {
68-
crate::EXECUTE_FAST_ORDER_LOCAL_ADDITIONAL_GRACE_PERIOD.into()
69-
}
70-
_ => None,
71-
},
77+
additional_grace_period,
7278
);
7379

7480
let init_auction_fee = order.init_auction_fee();

0 commit comments

Comments
 (0)