diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-10-13 04:03:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 04:03:15 +0800 |
commit | 88a68f732ee068d5f230708927207e3f84c43ad0 (patch) | |
tree | 5d0b967a582a7ef6e189834fccba5ede7e73101e /app/scripts/lib | |
parent | a1c3c944cf534fff8bfb9560347a03ba2a2bda00 (diff) | |
parent | d67a5031c7f2b4cd14d3d27f3769a31769012f54 (diff) | |
download | tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar.gz tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar.bz2 tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar.lz tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar.xz tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.tar.zst tangerine-wallet-browser-88a68f732ee068d5f230708927207e3f84c43ad0.zip |
Merge branch 'master' into i695-dapp-reload
Diffstat (limited to 'app/scripts/lib')
-rw-r--r-- | app/scripts/lib/config-manager.js | 11 | ||||
-rw-r--r-- | app/scripts/lib/idStore.js | 2 |
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) }) } |