aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/internal-wallet-state.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/internal-wallet-state.ts')
-rw-r--r--packages/taler-wallet-core/src/internal-wallet-state.ts10
1 files changed, 1 insertions, 9 deletions
diff --git a/packages/taler-wallet-core/src/internal-wallet-state.ts b/packages/taler-wallet-core/src/internal-wallet-state.ts
index 575e7553c..ad6afe3c3 100644
--- a/packages/taler-wallet-core/src/internal-wallet-state.ts
+++ b/packages/taler-wallet-core/src/internal-wallet-state.ts
@@ -125,14 +125,6 @@ export interface RecoupOperations {
): Promise<void>;
}
-export type DenomInfo = DenominationInfo & {
- /**
- * The denomination public key.
- */
- denomPub: DenominationPubKey;
-}
-
-
export type NotificationListener = (n: WalletNotification) => void;
/**
@@ -184,7 +176,7 @@ export interface InternalWalletState {
}>,
exchangeBaseUrl: string,
denomPubHash: string,
- ): Promise<DenomInfo | undefined>;
+ ): Promise<DenominationInfo | undefined>;
db: DbAccess<typeof WalletStoresV1>;
http: HttpRequestLibrary;