taler-typescript-core

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

commit e8d97b2b6b01c24737c162fbe23ce75592e2b08e
parent 2763bcf5b4a1457e3f7fea80a0a09fed5895fd13
Author: Florian Dold <florian@dold.me>
Date:   Fri, 29 Aug 2025 12:12:20 +0200

wallet-core: properly materialize dev experiment transaction

Diffstat:
Mpackages/taler-wallet-core/src/dev-experiments.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/dev-experiments.ts b/packages/taler-wallet-core/src/dev-experiments.ts @@ -550,7 +550,7 @@ async function addFakeTx( const pursePair = await wex.cryptoApi.createEddsaKeypair({}); const pursePub = pursePair.pub; const peerPushCreditId = encodeCrock(getRandomBytes(32)); - const ctx = new PeerPushCreditTransactionContext(wex, pursePub); + const ctx = new PeerPushCreditTransactionContext(wex, peerPushCreditId); const summary = parsedUri.query?.get("summary") ?? "Test"; const amountEffectiveStr = parsedUri.query?.get("amountEffective"); if (!amountEffectiveStr) {