Skip to content

Commit

Permalink
1.14.98
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed May 30, 2018
1 parent 610594c commit c458ad9
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 13 deletions.
11 changes: 8 additions & 3 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

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

const version = '1.14.97'
const version = '1.14.98'

Exchange.ccxtVersion = version

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.14.97",
"version": "1.14.98",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges",
"main": "./ccxt.js",
"unpkg": "build/ccxt.browser.js",
Expand Down
2 changes: 1 addition & 1 deletion php/Exchange.php
Expand Up @@ -30,7 +30,7 @@

namespace ccxt;

$version = '1.14.97';
$version = '1.14.98';

// rounding mode
const TRUNCATE = 0;
Expand Down
7 changes: 6 additions & 1 deletion php/cointiger.php
Expand Up @@ -511,10 +511,15 @@ public function cancel_order ($id, $symbol = null, $params = array ()) {
if ($symbol === null)
throw new ExchangeError ($this->id . ' cancelOrder requires a $symbol argument');
$market = $this->market ($symbol);
return $this->privateDeleteOrder (array_merge (array (
$response = $this->privateDeleteOrder (array_merge (array (
'symbol' => $market['id'],
'order_id' => $id,
), $params));
return array (
'id' => $id,
'symbol' => $symbol,
'info' => $response,
);
}

public function sign ($path, $api = 'public', $method = 'GET', $params = array (), $headers = null, $body = null) {
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Expand Up @@ -22,7 +22,7 @@

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

__version__ = '1.14.97'
__version__ = '1.14.98'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/__init__.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '1.14.97'
__version__ = '1.14.98'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/base/exchange.py
Expand Up @@ -2,7 +2,7 @@

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

__version__ = '1.14.97'
__version__ = '1.14.98'

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

Expand Down
7 changes: 6 additions & 1 deletion python/ccxt/async/cointiger.py
Expand Up @@ -495,10 +495,15 @@ async def cancel_order(self, id, symbol=None, params={}):
if symbol is None:
raise ExchangeError(self.id + ' cancelOrder requires a symbol argument')
market = self.market(symbol)
return await self.privateDeleteOrder(self.extend({
response = await self.privateDeleteOrder(self.extend({
'symbol': market['id'],
'order_id': id,
}, params))
return {
'id': id,
'symbol': symbol,
'info': response,
}

def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
self.check_required_credentials()
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '1.14.97'
__version__ = '1.14.98'

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

Expand Down
7 changes: 6 additions & 1 deletion python/ccxt/cointiger.py
Expand Up @@ -495,10 +495,15 @@ def cancel_order(self, id, symbol=None, params={}):
if symbol is None:
raise ExchangeError(self.id + ' cancelOrder requires a symbol argument')
market = self.market(symbol)
return self.privateDeleteOrder(self.extend({
response = self.privateDeleteOrder(self.extend({
'symbol': market['id'],
'order_id': id,
}, params))
return {
'id': id,
'symbol': symbol,
'info': response,
}

def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
self.check_required_credentials()
Expand Down

0 comments on commit c458ad9

Please sign in to comment.