knowm / XChange

XChange is a Java library providing a streamlined API for interacting with 60+ Bitcoin and Altcoin exchanges providing a consistent interface for trading and accessing market data.
http://knowm.org/open-source/xchange/
MIT License
3.84k stars 1.94k forks source link

(bitfinex) AccountService.getFundingHistory returns empty list for DASH #1976

Open geirgp opened 6 years ago

geirgp commented 6 years ago

For a Bitfinex account with 3 deposits (1xBTC, 2xDASH) I execute the below (kotlin) code

val bitfinex = ExchangeFactory.INSTANCE.createExchange(bitfinexSpec)
val btc = bitfinex.accountService
    .getFundingHistory(BitfinexFundingHistoryParams(null, null, null, Currency.BTC))
val dash = bitfinex.accountService
    .getFundingHistory(BitfinexFundingHistoryParams(null, null, null, Currency.DASH))

I expect the btc list to have 1 FundRecord, which it does, and dash to have 2, but it doesn't - list is empty

Any thoughts?

hurricup commented 6 years ago

Code looks fine to me on the XChange side. Have no DASH deposits, so can't check live :( Looks like problem on the BF side