Nibaru
Nibaru
Hi @PhilWaldmann, thanks for your reply. Hmm, still getting the same error. I actually played with adding ```relation``` last night and was seeing the same behavior. I've noticed something else...
Ok, I found a workaround. In my user.js I added the following function: ``` async addRole(role) { const RoleUser = require('./role-user'); const sql = `INSERT INTO roles_users (user_id,role_id) values (${this.id},${role.id})`;...
Had the same issue (on iOS). Just checked my wallet, money is back. Time to find a new wallet..
I'm taking a whack at adding all the resilience code for Kucoin. I was running the market data service unit test and it fails on the [testOrderBookFull](https://github.com/knowm/XChange/blob/80878f9355bf8ca3c8fb7147c718616598476539/xchange-kucoin/src/test/java/org/knowm/xchange/kucoin/KucoinMarketDataServiceIntegration.java#L70) test. Looking at...
@earce Was there ever any resolution on this? I read through the Netty issue and it seemed like it was fixed. ?
Any update on this as to when it'll get into a PR and a release?
I have built the Binance module from the develop branch and can confirm it is again working as expected with no futures enabled on Binance.us.
I have develop checked out and just added a quick test to the ```xchange-kucoin``` module. I basically just grabbed the code out of the ```BaseExchange``` that loads the metadata file...
@makarid The Kucoin module definitely didn't have any tests covering this, but I think the issue is changing from a concrete CurrencyPair class to an abstract Instrument class. We can...
@makarid Yah, I'm using latest develop. I mentioned earlier in the thread that I created a quick test in the kucoin module to read the kucoin.json in - just copy...