Skip to content

Commit

Permalink
1.10.964
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Feb 1, 2018
1 parent 81dfdad commit 3789565
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 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 Exchange = require ('./js/base/Exchange')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.10.963'
const version = '1.10.964'

Exchange.ccxtVersion = version

Expand Down
2 changes: 1 addition & 1 deletion doc/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ Thank you!
:target: https://www.npmjs.com/package/ccxt
.. |Gitter| image:: https://badges.gitter.im/ccxt-dev/ccxt.svg
:target: https://gitter.im/ccxt-dev/ccxt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
.. |Supported Exchanges| image:: https://img.shields.io/badge/exchanges-98-blue.svg
.. |Supported Exchanges| image:: https://img.shields.io/badge/exchanges-97-blue.svg
:target: https://github.com/ccxt/ccxt/wiki/Exchange-Markets
.. |_1broker| image:: https://user-images.githubusercontent.com/1294454/27766021-420bd9fc-5ecb-11e7-8ed6-56d0081efed2.jpg
.. |_1btcxe| image:: https://user-images.githubusercontent.com/1294454/27766049-2b294408-5ecc-11e7-85cc-adaff013dc1a.jpg
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.963",
"version": "1.10.964",
"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: 1 addition & 1 deletion php/Exchange.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace ccxt;

$version = '1.10.963';
$version = '1.10.964';

abstract class Exchange {

Expand Down
2 changes: 1 addition & 1 deletion php/gateio.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public function query_deposit_address ($method, $currency, $params = array ()) {
), $params));
$address = null;
if (is_array ($response) && array_key_exists ('addr', $response))
$address = $this->safe_string($response['addr'], 0);
$address = $this->safe_string($response, 'addr');
return array (
'currency' => $currency,
'address' => $address,
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.963'
__version__ = '1.10.964'

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

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.963'
__version__ = '1.10.964'

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

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.963'
__version__ = '1.10.964'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/gateio.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async def query_deposit_address(self, method, currency, params={}):
}, params))
address = None
if 'addr' in response:
address = self.safe_string(response['addr'], 0)
address = self.safe_string(response, 'addr')
return {
'currency': currency,
'address': address,
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.963'
__version__ = '1.10.964'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/gateio.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def query_deposit_address(self, method, currency, params={}):
}, params))
address = None
if 'addr' in response:
address = self.safe_string(response['addr'], 0)
address = self.safe_string(response, 'addr')
return {
'currency': currency,
'address': address,
Expand Down

0 comments on commit 3789565

Please sign in to comment.