You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had this working before, and now when I run conn.Client.GetExchangeInfo().Result, I get a the following error:
System.AggregateException: 'One or more errors occurred. (Unable to deserialize message from: https://api.binance.com/api/v1/exchangeInfo. Exception: Error converting value "MAX_POSITION" to type 'BinanceExchange.API.Enums.ExchangeInfoSymbolFilterType'. Path 'filterType', line 1, position 942296.)'
Package Version: 4.12.0
Repro Steps
public class BinanceClientConnection
{
private string key = "asdasdasdasdasd";
private string secret = "asdasdasdasdasdas";
public BinanceClient Client;
public BinanceClientConnection()
{
this.Client = new BinanceClient(new ClientConfiguration()
{
ApiKey = key,
SecretKey = secret,
});
}
}
conn = new BinanceClientConnection();
3. var info = conn.Client.GetExchangeInfo().Result;
The text was updated successfully, but these errors were encountered:
Issue Overview
I had this working before, and now when I run conn.Client.GetExchangeInfo().Result, I get a the following error:
System.AggregateException: 'One or more errors occurred. (Unable to deserialize message from: https://api.binance.com/api/v1/exchangeInfo. Exception: Error converting value "MAX_POSITION" to type 'BinanceExchange.API.Enums.ExchangeInfoSymbolFilterType'. Path 'filterType', line 1, position 942296.)'
Package Version: 4.12.0
Repro Steps
conn = new BinanceClientConnection();
3.
var info = conn.Client.GetExchangeInfo().Result;
The text was updated successfully, but these errors were encountered: