From e759684fd0658b4a3ba241744424ceda11bd500b Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 31 Aug 2022 11:46:39 -0300 Subject: invoice and transfer details --- .../taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts') diff --git a/packages/taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts b/packages/taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts index f077f45a4..70e8487d8 100644 --- a/packages/taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts +++ b/packages/taler-wallet-webextension/src/wallet/ExchangeSelection/state.ts @@ -317,7 +317,6 @@ export function createDenominationPairTimeline(left: FeeDescription[], right: Fe //now both lists are non empty and (starts,ends) at the same time while (li < left.length && ri < right.length && Amounts.cmp(left[li].value, right[ri].value) === 0) { - // console.log('start', li, ri, left[li], right[ri]) if (AbsoluteTime.cmp(left[li].from, timeCut) !== 0 && AbsoluteTime.cmp(right[ri].from, timeCut) !== 0) { // timeCut comes from the latest "until" (expiration from the previous) @@ -325,7 +324,6 @@ export function createDenominationPairTimeline(left: FeeDescription[], right: Fe // it should be the same as the "from" from one of the latest left or right // otherwise it means that there is missing a gap object in the middle // the list is not complete and the behavior is undefined - console.log(li, ri, timeCut) throw Error('one of the list is not completed: list[i].until !== list[i+1].from') } -- cgit v1.2.3