aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/wallet-types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-06-20 19:43:39 +0200
committerFlorian Dold <florian@dold.me>2023-06-20 19:43:39 +0200
commit77849fdf5d7e924b6a000b4b655a07c1fd1f1c4e (patch)
tree1ce7d9d178bc7c3ef7555e3ba7211aa4fc7cb303 /packages/taler-util/src/wallet-types.ts
parent98a351aa4c8acfc310316ebb5d7d6fd986a44ba8 (diff)
downloadwallet-core-77849fdf5d7e924b6a000b4b655a07c1fd1f1c4e.tar.xz
-minor rename
Diffstat (limited to 'packages/taler-util/src/wallet-types.ts')
-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");