File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/execution/src/matching_engine Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2836,7 +2836,7 @@ fn test_process_market_orders_with_protection_rejeceted_and_valid(
28362836 1 ,
28372837 ) )
28382838 . build ( ) ;
2839- engine_l2. process_order_book_delta ( & orderbook_delta_sell) ;
2839+ let _ = engine_l2. process_order_book_delta ( & orderbook_delta_sell) ;
28402840
28412841 // Create two market orders with Protection
28422842 // 1. Market SELL order will be rejected as the Bid Side of the book is empty
@@ -2925,7 +2925,7 @@ fn test_process_stop_orders_with_protection_rejeceted_and_valid(
29252925 1 ,
29262926 ) )
29272927 . build ( ) ;
2928- engine_l2. process_order_book_delta ( & orderbook_delta_sell) ;
2928+ let _ = engine_l2. process_order_book_delta ( & orderbook_delta_sell) ;
29292929
29302930 // Create two Stop Market orders with Protection
29312931 // 1. Stop Market SELL order will be rejected as the Bid Side of the book is empty
You can’t perform that action at this time.
0 commit comments