Merge pull request #8 from DimensionSoftware/6.fix-typo
Fix typo: Conditioanl
This commit is contained in:
@@ -34,7 +34,7 @@ If you only use the [public endpoints](#public-endpoints) you can omit key and s
|
|||||||
#### async placeConditionalOrder(params)
|
#### async placeConditionalOrder(params)
|
||||||
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-placecond)
|
[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)
|
[See bybit documentation](https://bybit-exchange.github.io/docs/inverse/#t-getcond)
|
||||||
|
|
||||||
#### async cancelConditionalOrder(params)
|
#### async cancelConditionalOrder(params)
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ module.exports = class RestClient {
|
|||||||
return await this.request.post('open-api/stop-order/create', params);
|
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);
|
return await this.request.get('open-api/stop-order/list', params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user