aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/util/retries.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-20 03:22:43 +0100
committerFlorian Dold <florian@dold.me>2023-02-20 03:22:43 +0100
commitd4fda1eea86ef901d125078f1f4fe0fe4a141afb (patch)
tree58c5ee16db7199eed263e0416ad4fa6ffa8a5765 /packages/taler-wallet-core/src/util/retries.ts
parentc8b93a37ba78ffe24d9cc0548a1f8a0b3f1fb7de (diff)
downloadwallet-core-d4fda1eea86ef901d125078f1f4fe0fe4a141afb.tar.xz
wallet-core: raw/effective amount for push transactions, fix transactions list for push/pull credit
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}`;