Skip to content

Commit

Permalink
Fixed symbol formatting order book factory
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Oct 8, 2024
1 parent 4bee950 commit e8cc1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BitMart.Net/SymbolOrderBooks/BitMartOrderBookFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public BitMartOrderBookFactory(IServiceProvider serviceProvider)

UsdFutures = new OrderBookFactory<BitMartOrderBookOptions>((symbol, options) => CreateUsdFutures(symbol, options), (baseAsset, quoteAsset, options) => CreateUsdFutures(baseAsset + quoteAsset, options));

Spot = new OrderBookFactory<BitMartOrderBookOptions>((symbol, options) => CreateSpot(symbol, options), (baseAsset, quoteAsset, options) => CreateSpot(baseAsset + quoteAsset, options));
Spot = new OrderBookFactory<BitMartOrderBookOptions>((symbol, options) => CreateSpot(symbol, options), (baseAsset, quoteAsset, options) => CreateSpot(baseAsset + "_" + quoteAsset, options));

}

Expand Down

0 comments on commit e8cc1ff

Please sign in to comment.