diff options
author | Florian Dold <florian@dold.me> | 2023-04-04 15:25:29 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-04-04 15:26:14 +0200 |
commit | 07d8498abc6aa21ab7c8e7146a04b4b731504c3d (patch) | |
tree | 029fdde522f60569254a23a91a86e152f450c92a /packages/taler-wallet-core/src/operations/pay-peer.ts | |
parent | cefec08ce7ef5d1fce0398d54b651c3a0762c788 (diff) |
wallet-core: implement runIntegrationTestV2
Diffstat (limited to 'packages/taler-wallet-core/src/operations/pay-peer.ts')
-rw-r--r-- | packages/taler-wallet-core/src/operations/pay-peer.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/pay-peer.ts b/packages/taler-wallet-core/src/operations/pay-peer.ts index ff0e15c00..92ec549dd 100644 --- a/packages/taler-wallet-core/src/operations/pay-peer.ts +++ b/packages/taler-wallet-core/src/operations/pay-peer.ts @@ -1000,7 +1000,7 @@ export async function processPeerPushCredit( }; } -export async function confirmPeerPushPayment( +export async function confirmPeerPushCredit( ws: InternalWalletState, req: ConfirmPeerPushCreditRequest, ): Promise<AcceptPeerPushPaymentResponse> { @@ -1119,7 +1119,7 @@ export async function processPeerPullDebit( }; } -export async function acceptIncomingPeerPullPayment( +export async function confirmPeerPullDebit( ws: InternalWalletState, req: ConfirmPeerPullDebitRequest, ): Promise<AcceptPeerPullPaymentResponse> { |