diff options
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r-- | packages/taler-wallet-core/src/operations/deposits.ts | 3 | ||||
-rw-r--r-- | packages/taler-wallet-core/src/operations/tip.ts | 2 | ||||
-rw-r--r-- | packages/taler-wallet-core/src/operations/withdraw.test.ts | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/packages/taler-wallet-core/src/operations/deposits.ts b/packages/taler-wallet-core/src/operations/deposits.ts index 64217acab..47efbb213 100644 --- a/packages/taler-wallet-core/src/operations/deposits.ts +++ b/packages/taler-wallet-core/src/operations/deposits.ts @@ -234,12 +234,11 @@ export async function processDepositGroup( ); const raw = Amounts.parseOrThrow(track.coin_contribution); const wireFee = Amounts.parseOrThrow(fee.wireFee); - const effective = Amounts.sub(raw, wireFee).amount; newWiredTransaction = { value: { amountRaw: Amounts.stringify(raw), - amountEffective: Amounts.stringify(effective), + wireFee: Amounts.stringify(wireFee), exchangePub: track.exchange_pub, timestampExecuted: track.execution_time, wireTransferId: track.wtid, diff --git a/packages/taler-wallet-core/src/operations/tip.ts b/packages/taler-wallet-core/src/operations/tip.ts index 28c3cda52..b37288079 100644 --- a/packages/taler-wallet-core/src/operations/tip.ts +++ b/packages/taler-wallet-core/src/operations/tip.ts @@ -61,9 +61,9 @@ import { updateExchangeFromUrl } from "./exchanges.js"; import { getCandidateWithdrawalDenoms, getExchangeWithdrawalInfo, - selectWithdrawalDenominations, updateWithdrawalDenoms, } from "./withdraw.js"; +import { selectWithdrawalDenominations } from "../util/coinSelection.js"; const logger = new Logger("operations/tip.ts"); diff --git a/packages/taler-wallet-core/src/operations/withdraw.test.ts b/packages/taler-wallet-core/src/operations/withdraw.test.ts index c77f75b9d..5a557b5de 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.test.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.test.ts @@ -17,7 +17,7 @@ import { Amounts, DenomKeyType } from "@gnu-taler/taler-util"; import test from "ava"; import { DenominationRecord, DenominationVerificationStatus } from "../db.js"; -import { selectWithdrawalDenominations } from "./withdraw.js"; +import { selectWithdrawalDenominations } from "../util/coinSelection.js"; test("withdrawal selection bug repro", (t) => { const amount = { |