aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 902599beb..932d61eda 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -1261,6 +1261,8 @@ export class Wallet {
await this.q()
.putAll(Stores.denominations,
Object.keys(newDenoms).map((d) => newDenoms[d]))
+ .putAll(Stores.denominations,
+ Object.keys(existingDenoms).map((d) => existingDenoms[d]))
.finish();
return exchangeInfo;
}