CCXT: don't use version > 2.9.14. Divide by string

Hi, just to signal you to be careful with to don’t use ccxt > 2.9 because of some bug.

I have found this in the python :

defaultExpires = self.safe_integer_2(self.options, ‘api-expires’, ‘expires’, int((self.timeout / str(1000))))

PHP:
$defaultExpires = $this->safe_integer_2($this->options, ‘api-expires’, ‘expires’, intval(($this->timeout / (string) 1000)));

I have opened this issue:

tchuss

3 Likes

Fixed in 3.0.72

3 Likes

Thanks for the update.

2 Likes