Closed lisa3907 closed 5 years ago
if ((_market.baseId.Substring(0, 1) == "X" || _market.baseId.Substring(0, 1) == "Z") && arket.baseId.Length > 3)
Bug FIX: reason Tezos (XTZ) coin
Can you explain the different between FetchMarkets method on public API and LoadMarkets in your base library, and why I would use one over the other in various scenarios…
The difference between FetchMarkets and LoadMarkets is the difference between caching and downloading information directly. When LoadMarkets is called for the first time after execution, it calls FetchMarkets and stores it in the cache.
MAIL-FROM: Andrew Tollervey andrew.tollervey@hotmail.co.uk
Good idea for doing caching.
I think I may have found another bug.
file: privateApi.cs
Namespace: CCXT.NET.Bithumb.Private
If you look at various methods with the following "IF" statement:
if (!nameResult1.success)
looking at it, I think the ! should be removed from the above line of code, otherwise whenever success == true, "Not supported yet" will always be returned.
I don’t understand your found bug. My coding style do not write like “if (!result)”. What is line number in privateApi.cs.
You can close this as it appears my local code doesn't match your latest version so will update myside based upon latest code. Regards...
MAIL-FROM: Andrew Tollervey andrew.tollervey@hotmail.co.uk