aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-20 01:16:31 +0100
committerFlorian Dold <florian@dold.me>2023-02-20 01:16:31 +0100
commit1747d3ac1853f0ec5791ded5ce4711ed3e5a343f (patch)
tree671667b377eeb9c9a82a397939072a6d1850c734 /packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
parent30b3949d2bd9da6bceddb40f3d1921b95fa80316 (diff)
downloadwallet-core-1747d3ac1853f0ec5791ded5ce4711ed3e5a343f.tar.xz
wallet-core: rename p2p requests to something more sensible
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts b/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
index 15b274e6b..0bab14578 100644
--- a/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
+++ b/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
@@ -53,7 +53,7 @@ export async function runPeerToPeerPullTest(t: GlobalTestState) {
);
const resp = await wallet1.client.call(
- WalletApiOperation.InitiatePeerPullPayment,
+ WalletApiOperation.InitiatePeerPullCredit,
{
exchangeBaseUrl: exchange.baseUrl,
partialContractTerms: {
@@ -69,7 +69,7 @@ export async function runPeerToPeerPullTest(t: GlobalTestState) {
await wallet1.runPending();
const checkResp = await wallet2.client.call(
- WalletApiOperation.CheckPeerPullPayment,
+ WalletApiOperation.PreparePeerPullDebit,
{
talerUri: resp.talerUri,
},
@@ -78,7 +78,7 @@ export async function runPeerToPeerPullTest(t: GlobalTestState) {
console.log(`checkResp: ${j2s(checkResp)}`);
const acceptResp = await wallet2.client.call(
- WalletApiOperation.AcceptPeerPullPayment,
+ WalletApiOperation.ConfirmPeerPullDebit,
{
peerPullPaymentIncomingId: checkResp.peerPullPaymentIncomingId,
},