@@ -7,6 +7,7 @@ pub use local::*;
7
7
use crate :: {
8
8
composite:: * ,
9
9
error:: MatchingEngineError ,
10
+ events:: OrderExecuted ,
10
11
state:: { Auction , AuctionStatus , MessageProtocol } ,
11
12
utils:: { self , auction:: DepositPenalty } ,
12
13
} ;
@@ -20,6 +21,7 @@ use common::messages::{
20
21
struct PreparedOrderExecution {
21
22
pub user_amount : u64 ,
22
23
pub fill : Fill ,
24
+ pub order_executed_event : OrderExecuted ,
23
25
}
24
26
25
27
fn handle_execute_fast_order < ' info > (
@@ -40,7 +42,7 @@ fn handle_execute_fast_order<'info>(
40
42
. unwrap ( )
41
43
. to_fast_market_order_unchecked ( ) ;
42
44
43
- let ( user_amount, new_status) = {
45
+ let ( user_amount, new_status, order_executed_event ) = {
44
46
let auction_info = auction. info . as_ref ( ) . unwrap ( ) ;
45
47
let current_slot = Clock :: get ( ) . unwrap ( ) . slot ;
46
48
@@ -205,22 +207,19 @@ fn handle_execute_fast_order<'info>(
205
207
custodian. key ( ) . into ( ) ,
206
208
) ?;
207
209
208
- // Emit the order executed event, which liquidators can listen to if this execution ended up
209
- // being penalized so they can collect the base fee at settlement.
210
- emit ! ( crate :: events:: OrderExecuted {
211
- auction: auction. key( ) ,
212
- vaa: fast_vaa. key( ) ,
213
- source_chain: auction_info. source_chain,
214
- target_protocol: auction. target_protocol,
215
- penalized,
216
- } ) ;
217
-
218
210
(
219
211
user_amount,
220
212
AuctionStatus :: Completed {
221
213
slot : current_slot,
222
214
execute_penalty : if penalized { penalty. into ( ) } else { None } ,
223
215
} ,
216
+ OrderExecuted {
217
+ auction : auction. key ( ) ,
218
+ vaa : fast_vaa. key ( ) ,
219
+ source_chain : auction_info. source_chain ,
220
+ target_protocol : auction. target_protocol ,
221
+ penalized,
222
+ } ,
224
223
)
225
224
} ;
226
225
@@ -238,5 +237,6 @@ fn handle_execute_fast_order<'info>(
238
237
. try_into ( )
239
238
. map_err ( |_| MatchingEngineError :: RedeemerMessageTooLarge ) ?,
240
239
} ,
240
+ order_executed_event,
241
241
} )
242
242
}
0 commit comments