File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ This release introduces [uv](https://docs.astral.sh/uv) as the Python project an
103
103
- Fixed backtest example load bars from custom CSV (#2383 ), thanks @hanksuper
104
104
- Fixed subscribe composite bars (#2390 ), thanks @faysou
105
105
- Fixed invalid link in IB docs (#2401 ), thanks @stefansimik
106
- - Fixed cache index loading to ensure persisted data remains available after startup
106
+ - Fixed cache index loading to ensure persisted data remains available after startup, thanks for reporting @ Saransh-28
107
107
108
108
### Documentation Updates
109
109
- Added backtest clock and timers example (#2327 ), thanks @stefansimik
Original file line number Diff line number Diff line change @@ -1283,7 +1283,7 @@ mod tests {
1283
1283
#[ case] input : Result < & str , & ' static str > , // Using `&'static str` for errors
1284
1284
#[ case] expected : Currency ,
1285
1285
) {
1286
- let actual = parse_currency_or_usd_default ( input. map_err ( |e| std:: io:: Error :: other ( e ) ) ) ;
1286
+ let actual = parse_currency_or_usd_default ( input. map_err ( std:: io:: Error :: other) ) ;
1287
1287
assert_eq ! ( actual, expected) ;
1288
1288
}
1289
1289
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ impl ExecutionEngine {
196
196
continue ;
197
197
}
198
198
let mut own_book = self . get_or_init_own_order_book ( & order. instrument_id ( ) ) ;
199
- own_book. add ( order. to_own_book_order ( ) )
199
+ own_book. add ( order. to_own_book_order ( ) ) ;
200
200
}
201
201
}
202
202
}
Original file line number Diff line number Diff line change @@ -1558,7 +1558,7 @@ impl OrderMatchingEngine {
1558
1558
"Added position id {} to cache for order {}" ,
1559
1559
position_id,
1560
1560
client_order_id
1561
- )
1561
+ ) ;
1562
1562
}
1563
1563
1564
1564
if ( !child_order. is_open ( ) )
@@ -1631,7 +1631,7 @@ impl OrderMatchingEngine {
1631
1631
price,
1632
1632
trigger_price,
1633
1633
Some ( false ) ,
1634
- )
1634
+ ) ;
1635
1635
}
1636
1636
}
1637
1637
} else {
@@ -2077,7 +2077,7 @@ impl OrderMatchingEngine {
2077
2077
price,
2078
2078
trigger_price,
2079
2079
Some ( false ) ,
2080
- )
2080
+ ) ;
2081
2081
}
2082
2082
}
2083
2083
}
You can’t perform that action at this time.
0 commit comments