Skip to content

Commit

Permalink
build: skip-tests (ccxt#22923)
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Jun 28, 2024
1 parent 0fc7b5c commit da5a050
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cs/ccxt/exchanges/pro/vertex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public virtual object parseWsTicker(object ticker, object market = null)
// "ask_qty": "1000" // quantity at the lowest ask
// }
//
object timestamp = Precise.stringDiv(this.safeString(ticker, "timestamp"), "1000000");
object timestamp = this.safeIntegerProduct(ticker, "timestamp", 0.000001);
return this.safeTicker(new Dictionary<string, object>() {
{ "symbol", this.safeSymbol(null, market) },
{ "timestamp", timestamp },
Expand Down
2 changes: 1 addition & 1 deletion dist/ccxt.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -294205,7 +294205,7 @@ class vertex extends _vertex_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z
// "ask_qty": "1000" // quantity at the lowest ask
// }
//
const timestamp = _base_Precise_js__WEBPACK_IMPORTED_MODULE_3__/* .Precise */ .O.stringDiv(this.safeString(ticker, 'timestamp'), '1000000');
const timestamp = this.safeIntegerProduct(ticker, 'timestamp', 0.000001);
return this.safeTicker({
'symbol': this.safeSymbol(undefined, market),
'timestamp': timestamp,
Expand Down
2 changes: 1 addition & 1 deletion dist/ccxt.browser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/src/pro/vertex.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class vertex extends vertex$1 {
// "ask_qty": "1000" // quantity at the lowest ask
// }
//
const timestamp = Precise["default"].stringDiv(this.safeString(ticker, 'timestamp'), '1000000');
const timestamp = this.safeIntegerProduct(ticker, 'timestamp', 0.000001);
return this.safeTicker({
'symbol': this.safeSymbol(undefined, market),
'timestamp': timestamp,
Expand Down
2 changes: 1 addition & 1 deletion js/src/pro/vertex.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export default class vertex extends vertexRest {
// "ask_qty": "1000" // quantity at the lowest ask
// }
//
const timestamp = Precise.stringDiv(this.safeString(ticker, 'timestamp'), '1000000');
const timestamp = this.safeIntegerProduct(ticker, 'timestamp', 0.000001);
return this.safeTicker({
'symbol': this.safeSymbol(undefined, market),
'timestamp': timestamp,
Expand Down
2 changes: 1 addition & 1 deletion php/pro/vertex.php

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

2 changes: 1 addition & 1 deletion python/ccxt/pro/vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def parse_ws_ticker(self, ticker, market=None):
# "ask_qty": "1000" # quantity at the lowest ask
# }
#
timestamp = Precise.string_div(self.safe_string(ticker, 'timestamp'), '1000000')
timestamp = self.safe_integer_product(ticker, 'timestamp', 0.000001)
return self.safe_ticker({
'symbol': self.safe_symbol(None, market),
'timestamp': timestamp,
Expand Down

0 comments on commit da5a050

Please sign in to comment.