taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 7054acfd0470e13b8fc4c1f08834bc2fcc776ef4
parent 17896621e8b7ca8266d5b91ca8b165a21256fa24
Author: Florian Dold <florian@dold.me>
Date:   Thu,  4 Apr 2024 22:15:09 +0200

wallet-core: fix outdated check in coin selection test

Diffstat:
Mpackages/taler-wallet-core/src/coinSelection.test.ts | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/packages/taler-wallet-core/src/coinSelection.test.ts b/packages/taler-wallet-core/src/coinSelection.test.ts @@ -70,8 +70,6 @@ test("p2p: should select the coin", (t) => { denomPubHash: "hash0", maxAge: 32, contributions: [Amounts.parseOrThrow("LOCAL:2.1")], - expireDeposit: inTheDistantFuture, - expireWithdraw: inTheDistantFuture, }, }); }); @@ -104,8 +102,6 @@ test("p2p: should select 3 coins", (t) => { Amounts.parseOrThrow("LOCAL:10"), Amounts.parseOrThrow("LOCAL:0.3"), ], - expireDeposit: inTheDistantFuture, - expireWithdraw: inTheDistantFuture, }, }); }); @@ -164,8 +160,6 @@ test("pay: select one coin to pay with fee", (t) => { denomPubHash: "hash0", maxAge: 32, contributions: [Amounts.parseOrThrow("LOCAL:2.2")], - expireDeposit: inTheDistantFuture, - expireWithdraw: inTheDistantFuture, }, });