From d4fda1eea86ef901d125078f1f4fe0fe4a141afb Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 20 Feb 2023 03:22:43 +0100 Subject: wallet-core: raw/effective amount for push transactions, fix transactions list for push/pull credit --- packages/taler-wallet-core/src/util/retries.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/taler-wallet-core/src/util') diff --git a/packages/taler-wallet-core/src/util/retries.ts b/packages/taler-wallet-core/src/util/retries.ts index ffa4d5b9e..5744bf8fe 100644 --- a/packages/taler-wallet-core/src/util/retries.ts +++ b/packages/taler-wallet-core/src/util/retries.ts @@ -220,12 +220,12 @@ export namespace RetryTags { export function forPeerPullPaymentDebit( ppi: PeerPullPaymentIncomingRecord, ): string { - return `${PendingTaskType.PeerPullDebit}:${ppi.pursePub}`; + return `${PendingTaskType.PeerPullDebit}:${ppi.peerPullPaymentIncomingId}`; } export function forPeerPushCredit( ppi: PeerPushPaymentIncomingRecord, ): string { - return `${PendingTaskType.PeerPushCredit}:${ppi.pursePub}`; + return `${PendingTaskType.PeerPushCredit}:${ppi.peerPushPaymentIncomingId}`; } export function byPaymentProposalId(proposalId: string): string { return `${PendingTaskType.Purchase}:${proposalId}`; -- cgit v1.2.3