aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-20 01:54:33 +0100
committerFlorian Dold <florian@dold.me>2023-02-20 01:54:33 +0100
commitc8b93a37ba78ffe24d9cc0548a1f8a0b3f1fb7de (patch)
tree399b9c692c402b10958d69ac77b30badcb0348a4 /packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts
parentdcbdddc32e2f3ffdebce69b03fcf678a27ef8a34 (diff)
downloadwallet-core-c8b93a37ba78ffe24d9cc0548a1f8a0b3f1fb7de.tar.xz
-rename
Diffstat (limited to 'packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts')
-rw-r--r--packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts b/packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts
index 8459d5ca2..5ffc78ece 100644
--- a/packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts
+++ b/packages/taler-wallet-webextension/src/cta/InvoicePay/state.ts
@@ -40,7 +40,7 @@ export function useComponentState({
const { i18n } = useTranslationContext();
const { pushAlertOnError } = useAlertContext();
const hook = useAsyncAsHook(async () => {
- const p2p = await api.wallet.call(WalletApiOperation.CheckPeerPullPayment, {
+ const p2p = await api.wallet.call(WalletApiOperation.PreparePeerPullDebit, {
talerUri: talerPayPullUri,
});
const balance = await api.wallet.call(WalletApiOperation.GetBalances, {});
@@ -144,7 +144,7 @@ export function useComponentState({
async function accept(): Promise<void> {
const resp = await api.wallet.call(
- WalletApiOperation.AcceptPeerPullPayment,
+ WalletApiOperation.ConfirmPeerPullDebit,
{
peerPullPaymentIncomingId,
},