Skip to content

Commit

Permalink
Fixed KlineTracker update handling
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Dec 2, 2024
1 parent 773d288 commit 06add65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CryptoExchange.Net/Trackers/Klines/KlineTracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class KlineTracker : IKlineTracker
/// <summary>
/// The internal data structure
/// </summary>
protected readonly Dictionary<DateTime, SharedKline> _data = new Dictionary<DateTime, SharedKline>();
protected readonly SortedDictionary<DateTime, SharedKline> _data = new SortedDictionary<DateTime, SharedKline>();
/// <summary>
/// The pre-snapshot queue buffering updates received before the snapshot is set and which will be applied after the snapshot was set
/// </summary>
Expand Down

0 comments on commit 06add65

Please sign in to comment.