From 6553c8c1220dea6e6c922fb48022516e0191c28b Mon Sep 17 00:00:00 2001 From: JKorf Date: Tue, 16 Jul 2024 16:18:21 +0200 Subject: [PATCH] Removed moved endpoint --- .../Clients/SpotApiV2/CoinExRestClientSpotApiAccount.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CoinEx.Net/Clients/SpotApiV2/CoinExRestClientSpotApiAccount.cs b/CoinEx.Net/Clients/SpotApiV2/CoinExRestClientSpotApiAccount.cs index db95795..11e8f99 100644 --- a/CoinEx.Net/Clients/SpotApiV2/CoinExRestClientSpotApiAccount.cs +++ b/CoinEx.Net/Clients/SpotApiV2/CoinExRestClientSpotApiAccount.cs @@ -252,13 +252,5 @@ public async Task> RemoveAutoMarketMakerLiquid }; return await _baseClient.ExecuteAsync(_baseClient.GetUri("v2/amm/remove-liquidity"), HttpMethod.Post, ct, parameters, true).ConfigureAwait(false); } - - - /// - public async Task>> GetAssetsAsync(CancellationToken ct = default) - { - return await _baseClient.ExecuteAsync>(_baseClient.GetUri("v2/spot/market"), HttpMethod.Get, ct).ConfigureAwait(false); - } - } }