Skip to content

Commit

Permalink
Fix IAssetsRestClient.GetAssetAsync not marked as auth method
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Jan 22, 2025
1 parent 9074071 commit edfa974
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ private OrderType GetPlaceOrderType(SharedOrderType type)
#endregion

#region Asset client
EndpointOptions<GetAssetRequest> IAssetsRestClient.GetAssetOptions { get; } = new EndpointOptions<GetAssetRequest>(false);
EndpointOptions<GetAssetRequest> IAssetsRestClient.GetAssetOptions { get; } = new EndpointOptions<GetAssetRequest>(true);
async Task<ExchangeWebResult<SharedAsset>> IAssetsRestClient.GetAssetAsync(GetAssetRequest request, CancellationToken ct)
{
var validationError = ((IAssetsRestClient)this).GetAssetOptions.ValidateRequest(Exchange, request, TradingMode.Spot, SupportedTradingModes);
Expand Down

0 comments on commit edfa974

Please sign in to comment.