aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/coinSelection.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/coinSelection.test.ts')
-rw-r--r--packages/taler-wallet-core/src/coinSelection.test.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/taler-wallet-core/src/coinSelection.test.ts b/packages/taler-wallet-core/src/coinSelection.test.ts
index 67cd08652..507c82c7d 100644
--- a/packages/taler-wallet-core/src/coinSelection.test.ts
+++ b/packages/taler-wallet-core/src/coinSelection.test.ts
@@ -46,7 +46,6 @@ test("p2p: should select the coin", (t) => {
t.log(`tally before: ${j2s(tally)}`);
const coins = testing_selectGreedy(
{
- wireFeeAmortization: 1,
wireFeesPerExchange: {},
},
createCandidates([
@@ -82,7 +81,6 @@ test("p2p: should select 3 coins", (t) => {
const tally = emptyTallyForPeerPayment(instructedAmount);
const coins = testing_selectGreedy(
{
- wireFeeAmortization: 1,
wireFeesPerExchange: {},
},
createCandidates([
@@ -117,7 +115,6 @@ test("p2p: can't select since the instructed amount is too high", (t) => {
const tally = emptyTallyForPeerPayment(instructedAmount);
const coins = testing_selectGreedy(
{
- wireFeeAmortization: 1,
wireFeesPerExchange: {},
},
createCandidates([
@@ -148,7 +145,6 @@ test("pay: select one coin to pay with fee", (t) => {
} satisfies CoinSelectionTally;
const coins = testing_selectGreedy(
{
- wireFeeAmortization: 1,
wireFeesPerExchange: { "http://exchange.localhost/": exchangeWireFee },
},
createCandidates([
@@ -282,7 +278,6 @@ test("p2p: regression STATER", (t) => {
const tally = emptyTallyForPeerPayment(instructedAmount);
const res = testing_selectGreedy(
{
- wireFeeAmortization: 1,
wireFeesPerExchange: {},
},
candidates as any,