1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 12:53:02 +00:00

Cleaned some now unused classes

This commit is contained in:
Jan Korf
2020-06-05 20:50:54 +02:00
parent c60131d464
commit 5a33bd554e
3 changed files with 4 additions and 74 deletions
@@ -22,7 +22,6 @@ namespace CryptoExchange.Net.OrderBook
/// The process buffer, used while syncing
/// </summary>
protected readonly List<ProcessBufferRangeSequenceEntry> processBuffer;
private readonly object bookLock = new object();
/// <summary>
/// The ask list
/// </summary>
@@ -30,8 +29,10 @@ namespace CryptoExchange.Net.OrderBook
/// <summary>
/// The bid list
/// </summary>
protected SortedList<decimal, ISymbolOrderBookEntry> bids;
private readonly object bookLock = new object();
private OrderBookStatus status;
private UpdateSubscription? subscription;
private readonly bool sequencesAreConsecutive;