* Transfer from delivery account to main account * @param {string} asset - the asset * @param {number} amount - the asset * @return {undefined}
(asset: string, amount: number)
| 5564 | * @return {undefined} |
| 5565 | */ |
| 5566 | async transferDeliveryToMain(asset: string, amount: number) { |
| 5567 | return await this.transferBetweenMainAndFutures(asset, amount, 4); |
| 5568 | } |
| 5569 | |
| 5570 | /** |
| 5571 | * Get maximum transfer-out amount of an asset |
nothing calls this directly
no test coverage detected