diff --git a/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs b/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs index 8d7ea26d..9ac02e40 100644 --- a/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs +++ b/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs @@ -101,7 +101,8 @@ public async Task> GetMyTradesAsync(string? mar protected override async Task> OnGetCurrenciesAsync() { - var result = await MakeJsonRequestAsync>("/capital/config/getall", BaseUrlSApi); + Dictionary payload = await GetNoncePayloadAsync(); + var result = await MakeJsonRequestAsync>("/capital/config/getall", BaseUrlSApi, payload); return result.ToDictionary(x => x.AssetCode, x => new ExchangeCurrency { diff --git a/src/ExchangeSharp/API/UPbit/ExchangeUPbitAPI.cs b/src/ExchangeSharp/API/Exchanges/UPbit/ExchangeUPbitAPI.cs similarity index 100% rename from src/ExchangeSharp/API/UPbit/ExchangeUPbitAPI.cs rename to src/ExchangeSharp/API/Exchanges/UPbit/ExchangeUPbitAPI.cs