Skip to content

Commit

Permalink
Fix bridge withdraw form.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasny committed Jun 17, 2024
1 parent 511af9b commit 16b23c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class WithdrawFormComponent implements OnInit, OnDestroy {

transfer() {
const { amount, address, memo } = this.withdrawForm.value;
const tokenType = this.swapType === SwapType.MAIN_ERC20 ? 'LTO20' : this.swapType === SwapType.MAIN_BINANCE ? 'BINANCE' : 'BEP20';
const tokenType = this.swapType === SwapType.MAIN_ERC20 ? 'LTO20' : this.swapType === SwapType.MAIN_BINANCE ? 'BINANCE' : 'BSC';
this.transfer$ = this._wallet.withdraw(
address,
amount,
Expand Down

0 comments on commit 16b23c5

Please sign in to comment.