webcerebrium / java-binance-api

Java Binance API Client
MIT License
73 stars 40 forks source link

getMinNotional wrong #27

Closed shufps closed 6 years ago

shufps commented 6 years ago

In BinanceExchangeSymbol.java:

public JsonObject getPriceFilter() {
    return filters.get("PRICE_FILTER");
}

public JsonObject getLotSize() {
    return filters.get("LOT_SIZE");
}

public JsonObject getMinNotional() {
    return filters.get("LOT_SIZE");
}

The last is wrong - it should be MIN_NOTIONAL.

shufps commented 6 years ago

Duplicate bug report ... Sorry, can't delete this issue.