summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/coinSelection.test.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-03-07 17:53:35 +0100
committerFlorian Dold <florian@dold.me>2024-03-07 17:53:35 +0100
commit727c0f3d4d92e6fe2e3d1bdf4cb2e00dca01bd52 (patch)
treed7ca38aa86771e0eaa20dd73ff8f1ebe2cad2f57 /packages/taler-wallet-core/src/coinSelection.test.ts
parentc22b13eebe0577c2b948a99e42670580d49d60ce (diff)
downloadwallet-core-727c0f3d4d92e6fe2e3d1bdf4cb2e00dca01bd52.tar.gz
wallet-core-727c0f3d4d92e6fe2e3d1bdf4cb2e00dca01bd52.tar.bz2
wallet-core-727c0f3d4d92e6fe2e3d1bdf4cb2e00dca01bd52.zip
wallet-core: get rid of max_wire_fee
Diffstat (limited to 'packages/taler-wallet-core/src/coinSelection.test.ts')
-rw-r--r--packages/taler-wallet-core/src/coinSelection.test.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/coinSelection.test.ts b/packages/taler-wallet-core/src/coinSelection.test.ts
index 3d8e24b0c..67cd08652 100644
--- a/packages/taler-wallet-core/src/coinSelection.test.ts
+++ b/packages/taler-wallet-core/src/coinSelection.test.ts
@@ -140,7 +140,6 @@ test("pay: select one coin to pay with fee", (t) => {
const zero = Amounts.zeroOfCurrency(payment.currency);
const tally = {
amountPayRemaining: payment,
- amountWireFeeLimitRemaining: zero,
amountDepositFeeLimitRemaining: zero,
customerDepositFees: zero,
customerWireFees: zero,
@@ -176,7 +175,6 @@ test("pay: select one coin to pay with fee", (t) => {
t.deepEqual(tally, {
amountPayRemaining: Amounts.parseOrThrow("LOCAL:0"),
- amountWireFeeLimitRemaining: zero,
amountDepositFeeLimitRemaining: zero,
customerDepositFees: Amounts.parse("LOCAL:0.1"),
customerWireFees: Amounts.parse("LOCAL:0.1"),