Skip to content

Commit cf156e4

Browse files
author
Travis CI
committed
1.17.369
[ci skip]
1 parent 410ecbc commit cf156e4

File tree

11 files changed

+19
-15
lines changed

11 files changed

+19
-15
lines changed

build/ccxt.browser.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Exchange = require ('./js/base/Exchange')
4545
//-----------------------------------------------------------------------------
4646
// this is updated by vss.js when building
4747

48-
const version = '1.17.368'
48+
const version = '1.17.369'
4949

5050
Exchange.ccxtVersion = version
5151

@@ -54029,6 +54029,7 @@ module.exports = class therock extends Exchange {
5402954029
await this.loadMarkets ();
5403054030
return await this.privateDeleteFundsFundIdOrdersId (this.extend ({
5403154031
'id': id,
54032+
'fund_id': this.marketId (symbol),
5403254033
}, params));
5403354034
}
5403454035

@@ -122071,29 +122072,29 @@ module.exports = {
122071122072

122072122073
},{"bn.js":480,"eth-lib/lib/hash":283,"number-to-bn":346,"underscore":431,"utf8":435}],484:[function(require,module,exports){
122073122074
module.exports={
122074-
"_from": "web3",
122075+
"_from": "web3@^1.0.0-beta.36",
122075122076
"_id": "web3@1.0.0-beta.36",
122076122077
"_inBundle": false,
122077122078
"_integrity": "sha512-fZDunw1V0AQS27r5pUN3eOVP7u8YAvyo6vOapdgVRolAu5LgaweP7jncYyLINqIX9ZgWdS5A090bt+ymgaYHsw==",
122078122079
"_location": "/web3",
122079122080
"_phantomChildren": {},
122080122081
"_requested": {
122081-
"type": "tag",
122082+
"type": "range",
122082122083
"registry": true,
122083-
"raw": "web3",
122084+
"raw": "web3@^1.0.0-beta.36",
122084122085
"name": "web3",
122085122086
"escapedName": "web3",
122086-
"rawSpec": "",
122087+
"rawSpec": "^1.0.0-beta.36",
122087122088
"saveSpec": null,
122088-
"fetchSpec": "latest"
122089+
"fetchSpec": "^1.0.0-beta.36"
122089122090
},
122090122091
"_requiredBy": [
122091122092
"#USER",
122092122093
"/"
122093122094
],
122094122095
"_resolved": "https://registry.npmjs.org/web3/-/web3-1.0.0-beta.36.tgz",
122095122096
"_shasum": "2954da9e431124c88396025510d840ba731c8373",
122096-
"_spec": "web3",
122097+
"_spec": "web3@^1.0.0-beta.36",
122097122098
"_where": "/home/travis/build/ccxt/ccxt",
122098122099
"author": {
122099122100
"name": "ethereum.org"

ccxt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Exchange = require ('./js/base/Exchange')
3737
//-----------------------------------------------------------------------------
3838
// this is updated by vss.js when building
3939

40-
const version = '1.17.368'
40+
const version = '1.17.369'
4141

4242
Exchange.ccxtVersion = version
4343

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.17.368",
3+
"version": "1.17.369",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "build/ccxt.browser.js",

php/Exchange.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
use kornrunner\Secp256k1;
3535
use kornrunner\Solidity;
3636

37-
$version = '1.17.368';
37+
$version = '1.17.369';
3838

3939
// rounding mode
4040
const TRUNCATE = 0;
@@ -50,7 +50,7 @@
5050

5151
class Exchange {
5252

53-
const VERSION = '1.17.368';
53+
const VERSION = '1.17.369';
5454

5555
public static $eth_units = array (
5656
'wei' => '1',

php/therock.php

+1
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public function cancel_order ($id, $symbol = null, $params = array ()) {
311311
$this->load_markets();
312312
return $this->privateDeleteFundsFundIdOrdersId (array_merge (array (
313313
'id' => $id,
314+
'fund_id' => $this->market_id($symbol),
314315
), $params));
315316
}
316317

python/ccxt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ----------------------------------------------------------------------------
2424

25-
__version__ = '1.17.368'
25+
__version__ = '1.17.369'
2626

2727
# ----------------------------------------------------------------------------
2828

python/ccxt/async_support/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.17.368'
7+
__version__ = '1.17.369'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/async_support/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '1.17.368'
5+
__version__ = '1.17.369'
66

77
# -----------------------------------------------------------------------------
88

python/ccxt/async_support/therock.py

+1
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ async def cancel_order(self, id, symbol=None, params={}):
298298
await self.load_markets()
299299
return await self.privateDeleteFundsFundIdOrdersId(self.extend({
300300
'id': id,
301+
'fund_id': self.market_id(symbol),
301302
}, params))
302303

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

python/ccxt/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.17.368'
7+
__version__ = '1.17.369'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/therock.py

+1
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ def cancel_order(self, id, symbol=None, params={}):
298298
self.load_markets()
299299
return self.privateDeleteFundsFundIdOrdersId(self.extend({
300300
'id': id,
301+
'fund_id': self.market_id(symbol),
301302
}, params))
302303

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

0 commit comments

Comments
 (0)