aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/pay-merchant.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-04-25 23:56:57 +0200
committerFlorian Dold <florian@dold.me>2023-04-25 23:58:17 +0200
commitfd86791e42a0651968ae58969de178dc72929ffb (patch)
treebbfeff4205ae6990ee60367b884b83a74e8b0c1a /packages/taler-wallet-core/src/operations/pay-merchant.ts
parentf94d7bc15115753ce3c492deb72ff9fdb4a66cba (diff)
downloadwallet-core-fd86791e42a0651968ae58969de178dc72929ffb.tar.xz
-DD37 wip
Diffstat (limited to 'packages/taler-wallet-core/src/operations/pay-merchant.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/pay-merchant.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/pay-merchant.ts b/packages/taler-wallet-core/src/operations/pay-merchant.ts
index e79314416..52f7f990d 100644
--- a/packages/taler-wallet-core/src/operations/pay-merchant.ts
+++ b/packages/taler-wallet-core/src/operations/pay-merchant.ts
@@ -71,6 +71,7 @@ import {
TalerErrorDetail,
TalerProtocolTimestamp,
TalerProtocolViolationError,
+ TransactionState,
TransactionType,
URL,
} from "@gnu-taler/taler-util";
@@ -2472,3 +2473,9 @@ export async function abortPay(
});
});
}
+
+export function computeWithdrawalTransactionStatus(
+ purchaseRecord: PurchaseRecord,
+): TransactionState {
+ throw Error("not implemented");
+}