aboutsummaryrefslogtreecommitdiff
path: root/src/dbTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-05-08 07:01:17 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-05-08 07:01:17 +0200
commitd25628ab024025a964c2c440da90e3424550e3d7 (patch)
tree86eacbb03430169d06f100b2bdb74399a5277d5b /src/dbTypes.ts
parentab2726848a547bd135212359545c5246b2303659 (diff)
downloadwallet-core-d25628ab024025a964c2c440da90e3424550e3d7.tar.xz
adjust to exchange protocol changes
Diffstat (limited to 'src/dbTypes.ts')
-rw-r--r--src/dbTypes.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dbTypes.ts b/src/dbTypes.ts
index 3cb9a0d32..98a0fc0e0 100644
--- a/src/dbTypes.ts
+++ b/src/dbTypes.ts
@@ -352,6 +352,7 @@ export interface PreCoinRecord {
coinPub: string;
coinPriv: string;
reservePub: string;
+ denomPubHash: string;
denomPub: string;
blindingKey: string;
withdrawSig: string;
@@ -450,6 +451,11 @@ export interface CoinRecord {
denomPub: string;
/**
+ * Hash of the public key that signs the coin.
+ */
+ denomPubHash: string;
+
+ /**
* Unblinded signature by the exchange.
*/
denomSig: string;