if (vars.remainDebtToLiquidate > 0) {
      // transfer the remain debt asset to the user as new supplied collateral
      VaultLogic.erc20IncreaseCrossSupply(debtAssetData, params.borrower, vars.remainDebtToLiquidate);

      // If the collateral is supplied at first we need set the supply flag
      VaultLogic.accountCheckAndSetSuppliedAsset(poolData, debtAssetData, params.borrower);
    }
