aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-10-12 07:13:53 +0800
committerDan Finlay <dan@danfinlay.com>2016-10-12 07:13:53 +0800
commit5d01d50c16490c025addab4fc2461495ca9d0a5f (patch)
tree2a4579690d7ba410adea51b605f7aa724d4edf84 /app/scripts/lib
parente1ece0f0e3bb53501409e5f8b3f5d904040ac2e8 (diff)
parentbbaf79f576443f6325d6c32d119f020a61bffa67 (diff)
downloadtangerine-wallet-browser-5d01d50c16490c025addab4fc2461495ca9d0a5f.tar.gz
tangerine-wallet-browser-5d01d50c16490c025addab4fc2461495ca9d0a5f.tar.zst
tangerine-wallet-browser-5d01d50c16490c025addab4fc2461495ca9d0a5f.zip
Merge branch 'master' into i721-ScrollAccountList
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/config-manager.js11
-rw-r--r--app/scripts/lib/idStore.js2
2 files changed, 13 insertions, 0 deletions
diff --git a/app/scripts/lib/config-manager.js b/app/scripts/lib/config-manager.js
index 715efb42e..ecc9bc5f7 100644
--- a/app/scripts/lib/config-manager.js
+++ b/app/scripts/lib/config-manager.js
@@ -277,6 +277,17 @@ ConfigManager.prototype.getConfirmed = function () {
return ('isConfirmed' in data) && data.isConfirmed
}
+ConfigManager.prototype.setTOSHash = function (hash) {
+ var data = this.getData()
+ data.TOSHash = hash
+ this.setData(data)
+}
+
+ConfigManager.prototype.getTOSHash = function () {
+ var data = this.getData()
+ return ('TOSHash' in data) && data.TOSHash
+}
+
ConfigManager.prototype.setCurrentFiat = function (currency) {
var data = this.getData()
data.fiatCurrency = currency
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index 89c0c3abc..6837a1e8d 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -60,6 +60,8 @@ IdentityStore.prototype.createNewVault = function (password, entropy, cb) {
this.configManager.setShowSeedWords(true)
var seedWords = this._idmgmt.getSeed()
+ this._loadIdentities()
+
cb(null, seedWords)
})
}