summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/db.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-06-11 13:26:18 +0200
committerFlorian Dold <florian@dold.me>2021-06-11 13:26:18 +0200
commitaf2ad00d84ba386883769b1886e4b2382b1500db (patch)
tree38c945a5fb312289275ac0f5fe6bb19862a0ee39 /packages/taler-wallet-core/src/db.ts
parent7d15ce3d888ca93b2b33d994fed3e4cabb957f4d (diff)
downloadwallet-core-af2ad00d84ba386883769b1886e4b2382b1500db.tar.gz
wallet-core-af2ad00d84ba386883769b1886e4b2382b1500db.tar.bz2
wallet-core-af2ad00d84ba386883769b1886e4b2382b1500db.zip
store exchange public key with signature on denomination
Diffstat (limited to 'packages/taler-wallet-core/src/db.ts')
-rw-r--r--packages/taler-wallet-core/src/db.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index 727e9de0b..5e2a3fefa 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -513,6 +513,12 @@ export interface DenominationRecord {
* Base URL of the exchange.
*/
exchangeBaseUrl: string;
+
+ /**
+ * Master public key of the exchange that made the signature
+ * on the denomination.
+ */
+ exchangeMasterPub: string;
}
export interface ExchangeBankAccount {