aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util')
-rw-r--r--packages/taler-util/src/wallet-types.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index 20e80f815..cff7637c6 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -2358,7 +2358,7 @@ export const codecForInitiatePeerPushDebitRequest =
.property("partialContractTerms", codecForPeerContractTerms())
.build("InitiatePeerPushDebitRequest");
-export interface PreparePeerPushCredit {
+export interface PreparePeerPushCreditRequest {
talerUri: string;
}
@@ -2395,8 +2395,8 @@ export interface PreparePeerPullDebitResponse {
}
export const codecForPreparePeerPushCreditRequest =
- (): Codec<PreparePeerPushCredit> =>
- buildCodecForObject<PreparePeerPushCredit>()
+ (): Codec<PreparePeerPushCreditRequest> =>
+ buildCodecForObject<PreparePeerPushCreditRequest>()
.property("talerUri", codecForString())
.build("CheckPeerPushPaymentRequest");