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 Original file line number Diff line number Diff line change @@ -54,21 +54,27 @@ fn prepare_order_execution<'info>(
54
54
55
55
let ( user_amount, new_status, beneficiary) = {
56
56
let auction_info = auction. info . as_ref ( ) . unwrap ( ) ;
57
-
58
57
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
+
59
70
let DepositPenalty {
60
71
penalty,
61
72
user_reward,
62
73
} = utils:: auction:: compute_deposit_penalty (
63
74
config,
64
75
auction_info,
65
76
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,
72
78
) ;
73
79
74
80
let init_auction_fee = order. init_auction_fee ( ) ;
You can’t perform that action at this time.
0 commit comments