* Transfer from delivery account to main account * @param {string} asset - the asset * @param {number} amount - the asset (optionnal) * @return {undefined}
(asset: string, amount: number)
| 5542 | * @return {undefined} |
| 5543 | */ |
| 5544 | async transferFuturesToMain(asset: string, amount: number) { |
| 5545 | return await this.transferBetweenMainAndFutures(asset, amount, 2); |
| 5546 | } |
| 5547 | |
| 5548 | /** |
| 5549 | * Transfer from main account to delivery account |
nothing calls this directly
no test coverage detected