summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet-api-types.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/wallet-api-types.ts
parentc8b93a37ba78ffe24d9cc0548a1f8a0b3f1fb7de (diff)
downloadwallet-core-d4fda1eea86ef901d125078f1f4fe0fe4a141afb.tar.gz
wallet-core-d4fda1eea86ef901d125078f1f4fe0fe4a141afb.tar.bz2
wallet-core-d4fda1eea86ef901d125078f1f4fe0fe4a141afb.zip
wallet-core: raw/effective amount for push transactions, fix transactions list for push/pull credit
Diffstat (limited to 'packages/taler-wallet-core/src/wallet-api-types.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet-api-types.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts
index 39d3f3d1f..904462c36 100644
--- a/packages/taler-wallet-core/src/wallet-api-types.ts
+++ b/packages/taler-wallet-core/src/wallet-api-types.ts
@@ -45,7 +45,7 @@ import {
PreparePeerPullDebitRequest,
PreparePeerPullDebitResponse,
PreparePeerPushCredit,
- CheckPeerPushPaymentResponse,
+ PreparePeerPushCreditResponse,
CoinDumpJson,
ConfirmPayRequest,
ConfirmPayResult,
@@ -615,7 +615,7 @@ export type InitiatePeerPushDebitOp = {
export type PreparePeerPushCreditOp = {
op: WalletApiOperation.PreparePeerPushCredit;
request: PreparePeerPushCredit;
- response: CheckPeerPushPaymentResponse;
+ response: PreparePeerPushCreditResponse;
};
/**