aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/common.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-24 15:07:29 +0200
committerFlorian Dold <florian@dold.me>2023-05-24 15:07:29 +0200
commit126e9e7457851d7d4293797c4c75cafea59f3444 (patch)
treeda8c69926f9013166c20babf280c02fcfdbb0af9 /packages/taler-wallet-core/src/operations/common.ts
parent7eef3f57d297a95c3ac933896d1a7c59b3f04085 (diff)
downloadwallet-core-126e9e7457851d7d4293797c4c75cafea59f3444.tar.xz
wallet-core: use/allow txids as tombstone
Diffstat (limited to 'packages/taler-wallet-core/src/operations/common.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/common.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/common.ts b/packages/taler-wallet-core/src/operations/common.ts
index f6572c851..5ad1e7112 100644
--- a/packages/taler-wallet-core/src/operations/common.ts
+++ b/packages/taler-wallet-core/src/operations/common.ts
@@ -364,7 +364,7 @@ export enum TombstoneTag {
/**
* Create an event ID from the type and the primary key for the event.
- *
+ *
* @deprecated use constructTombstone instead
*/
export function makeTombstoneId(type: TombstoneTag, ...args: string[]): string {
@@ -465,7 +465,7 @@ export type ParsedTombstone =
tag: TombstoneTag.DeleteWithdrawalGroup;
withdrawalGroupId: string;
}
- | { tag: TombstoneTag.DeleteRefund; refundGroupId: string };
+ | { tag: TombstoneTag.DeleteRefund; refundGroupId: string }
export function constructTombstone(p: ParsedTombstone): TombstoneIdStr {
switch (p.tag) {