Merge pull request #8 from DimensionSoftware/6.fix-typo

Fix typo: Conditioanl
This commit is contained in:
Tiago
2020-08-12 19:12:47 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ If you only use the [public endpoints](#public-endpoints) you can omit key and s
#### async placeConditionalOrder(params)
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-placecond)
#### async getConditioanlOrder(params)
#### async getConditionalOrder(params)
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-getcond)
#### async cancelConditionalOrder(params)

View File

@@ -72,7 +72,7 @@ module.exports = class RestClient {
return await this.request.post('open-api/stop-order/create', params);
}
async getConditioanlOrder(params) {
async getConditionalOrder(params) {
return await this.request.get('open-api/stop-order/list', params);
}