Skip to content

Commit

Permalink
1.9.129
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Oct 13, 2017
1 parent f00b031 commit 38e5dd0
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DDoSProtection extends NetworkError {}
class RequestTimeout extends NetworkError {}
class ExchangeNotAvailable extends NetworkError {}

$version = '1.9.128';
$version = '1.9.129';

$curl_errors = array (
0 => 'CURLE_OK',
Expand Down Expand Up @@ -18224,14 +18224,14 @@ public function fetch_orders ($symbol = null, $params = array ()) {

public function fetch_open_orders ($symbol = null, $params = array ()) {
$open = 0; // 0 for unfilled orders, 1 for filled orders
return $this->fetch_orders ($open, $symbol, array_merge (array (
return $this->fetch_orders ($symbol, array_merge (array (
'status' => $open,
), $params));
}

public function fetchClosedOrders ($symbol = null, $params = array ()) {
$closed = 1; // 0 for unfilled orders, 1 for filled orders
return $this->fetch_ordersByStatus ($closed, $symbol, array_merge (array (
return $this->fetch_orders ($symbol, array_merge (array (
'status' => $closed,
), $params));
}
Expand Down
2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const CryptoJS = require ('crypto-js')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.9.128'
const version = '1.9.129'

//-----------------------------------------------------------------------------
// platform detection
Expand Down
2 changes: 1 addition & 1 deletion ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DDoSProtection extends NetworkError {}
class RequestTimeout extends NetworkError {}
class ExchangeNotAvailable extends NetworkError {}

$version = '1.9.128';
$version = '1.9.129';

$curl_errors = array (
0 => 'CURLE_OK',
Expand Down
4 changes: 2 additions & 2 deletions ccxt/async/exchanges.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ccxt/exchanges.py
Original file line number Diff line number Diff line change
Expand Up @@ -16032,13 +16032,13 @@ def fetch_orders(self, symbol=None, params={}):

def fetch_open_orders(self, symbol=None, params={}):
open = 0 # 0 for unfilled orders, 1 for filled orders
return self.fetch_orders(open, symbol, self.extend({
return self.fetch_orders(symbol, self.extend({
'status': open,
}, params))

def fetchClosedOrders(self, symbol=None, params={}):
closed = 1 # 0 for unfilled orders, 1 for filled orders
return self.fetchOrdersByStatus(closed, symbol, self.extend({
return self.fetch_orders(symbol, self.extend({
'status': closed,
}, params))

Expand Down
2 changes: 1 addition & 1 deletion ccxt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
SOFTWARE.
"""

__version__ = '1.9.128'
__version__ = '1.9.129'
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.9.128",
"version": "1.9.129",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 85+ exchanges",
"main": "./ccxt.js",
"unpkg": "build/ccxt.browser.js",
Expand Down

0 comments on commit 38e5dd0

Please sign in to comment.