From 94d111a94533c0c31231642e8ffe4fbd4ce30096 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 29 May 2017 18:27:50 +0200 Subject: lint for unused variables, fix query bug detected by this --- src/webex/pages/confirm-create-reserve.tsx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'src/webex/pages/confirm-create-reserve.tsx') diff --git a/src/webex/pages/confirm-create-reserve.tsx b/src/webex/pages/confirm-create-reserve.tsx index 50a1045ef..6e1cc4a82 100644 --- a/src/webex/pages/confirm-create-reserve.tsx +++ b/src/webex/pages/confirm-create-reserve.tsx @@ -29,7 +29,6 @@ import { Amounts, CreateReserveResponse, CurrencyRecord, - Denomination, DenominationRecord, ReserveCreationInfo, } from "../../types"; @@ -229,16 +228,6 @@ function renderReserveCreationDetails(rci: ReserveCreationInfo|null) { } -function WithdrawFee(props: {reserveCreationInfo: ReserveCreationInfo|null}): JSX.Element { - if (props.reserveCreationInfo) { - const {overhead, withdrawFee} = props.reserveCreationInfo; - const totalCost = Amounts.add(overhead, withdrawFee).amount; - return

{i18n.str`Withdraw fees:`} {amountToPretty(totalCost)}

; - } - return

; -} - - interface ExchangeSelectionProps { suggestedExchangeUrl: string; amount: AmountJson; @@ -298,7 +287,7 @@ class ManualSelection extends ImplicitStateComponent { } try { const url = canonicalizeBaseUrl(this.url()!); - const r = await getExchangeInfo(url); + await getExchangeInfo(url); console.log("getExchangeInfo returned"); this.isOkay(true); } catch (e) { @@ -596,7 +585,6 @@ async function main() { throw Error(i18n.str`Can't parse amount: ${e.message}`); } const callback_url = query.callback_url; - const bank_url = query.bank_url; let wt_types; try { wt_types = JSON.parse(query.wt_types); -- cgit v1.2.3