Skip to content

Commit

Permalink
1.10.403
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Dec 18, 2017
1 parent 4ab129b commit 32c750f
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 9 deletions.
6 changes: 4 additions & 2 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const errors = require ('./js/base/errors')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.10.402'
const version = '1.10.403'

Exchange.ccxtVersion = version

Expand Down
2 changes: 1 addition & 1 deletion ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace ccxt;

$version = '1.10.402';
$version = '1.10.403';

const CLASSES_DIR = __DIR__ . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.10.402",
"version": "1.10.403",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges",
"main": "./ccxt.js",
"unpkg": "build/ccxt.browser.js",
Expand Down
2 changes: 2 additions & 0 deletions php/poloniex.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@ public function fetch_currencies ($params = array ()) {
$code = $this->common_currency_code($id);
$active = ($currency['delisted'] == 0);
$status = ($currency['disabled']) ? 'disabled' : 'ok';
if ($status != 'ok')
$active = false;
$result[$code] = array (
'id' => $id,
'code' => $code,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# ----------------------------------------------------------------------------

__version__ = '1.10.402'
__version__ = '1.10.403'

# ----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.402'
__version__ = '1.10.403'

# -----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/base/exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.402'
__version__ = '1.10.403'

# -----------------------------------------------------------------------------

Expand Down
2 changes: 2 additions & 0 deletions python/ccxt/async/poloniex.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ async def fetch_currencies(self, params={}):
code = self.common_currency_code(id)
active = (currency['delisted'] == 0)
status = 'disabled' if (currency['disabled']) else 'ok'
if status != 'ok':
active = False
result[code] = {
'id': id,
'code': code,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.402'
__version__ = '1.10.403'

# -----------------------------------------------------------------------------

Expand Down
2 changes: 2 additions & 0 deletions python/ccxt/poloniex.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ def fetch_currencies(self, params={}):
code = self.common_currency_code(id)
active = (currency['delisted'] == 0)
status = 'disabled' if (currency['disabled']) else 'ok'
if status != 'ok':
active = False
result[code] = {
'id': id,
'code': code,
Expand Down

0 comments on commit 32c750f

Please sign in to comment.