aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/util/retries.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/util/retries.ts')
-rw-r--r--packages/taler-wallet-core/src/util/retries.ts4
1 files changed, 2 insertions, 2 deletions
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}`;