aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/keyring-controller.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2017-01-21 05:52:21 +0800
committerkumavis <aaron@kumavis.me>2017-01-21 05:52:21 +0800
commit9c6cf905387e605724bf568169d0311380f1da22 (patch)
treeabbe60429fa21041949eb5c70aa13b1443c5ffc3 /app/scripts/keyring-controller.js
parent25e57939920d4685a20b4e7b3a14060e9d3314c7 (diff)
downloadtangerine-wallet-browser-9c6cf905387e605724bf568169d0311380f1da22.tar.gz
tangerine-wallet-browser-9c6cf905387e605724bf568169d0311380f1da22.tar.zst
tangerine-wallet-browser-9c6cf905387e605724bf568169d0311380f1da22.zip
keyring controller - placeSeedWords should use first hdKeyring
Diffstat (limited to 'app/scripts/keyring-controller.js')
-rw-r--r--app/scripts/keyring-controller.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/scripts/keyring-controller.js b/app/scripts/keyring-controller.js
index e609403cc..86c93f5a3 100644
--- a/app/scripts/keyring-controller.js
+++ b/app/scripts/keyring-controller.js
@@ -172,7 +172,9 @@ module.exports = class KeyringController extends EventEmitter {
// Used when creating a first vault, to allow confirmation.
// Also used when revealing the seed words in the confirmation view.
placeSeedWords () {
- const firstKeyring = this.keyrings[0]
+ const hdKeyrings = this.keyrings.filter((keyring) => keyring.type === 'HD Key Tree')
+ const firstKeyring = hdKeyrings[0]
+ if (!firstKeyring) throw new Error('KeyringController - No HD Key Tree found')
return firstKeyring.serialize()
.then((serialized) => {
const seedWords = serialized.mnemonic