Skip to content

Commit

Permalink
Fixed GetSymbolName not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Aug 9, 2024
1 parent 0b69651 commit d5e8101
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions BitMart.Net/Clients/SpotApi/BitMartRestClientSpotApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ protected override ServerRateLimitError ParseRateLimitResponse(int httpStatusCod
public ISpotClient CommonSpotClient => this;

/// <inheritdoc />
public string GetSymbolName(string baseAsset, string quoteAsset) =>
throw new NotImplementedException();
public string GetSymbolName(string baseAsset, string quoteAsset) => baseAsset + "_" + quoteAsset;

internal void InvokeOrderPlaced(OrderId id)
{
Expand Down

0 comments on commit d5e8101

Please sign in to comment.