aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorCsaba Solya <csaba.solya@gmail.com>2018-03-04 15:47:46 +0800
committerCsaba Solya <csaba.solya@gmail.com>2018-03-04 15:47:46 +0800
commitf7d4a1080df6d1c8ea5f68f88b01caea065b5e92 (patch)
treef74d0d6118105dc62060f4ffffffdf4ed9c3ec34 /app/scripts/lib
parent2b86d65d0c3266e8ddfe814abe1d1755fbf23fda (diff)
downloadtangerine-wallet-browser-f7d4a1080df6d1c8ea5f68f88b01caea065b5e92.tar.gz
tangerine-wallet-browser-f7d4a1080df6d1c8ea5f68f88b01caea065b5e92.tar.zst
tangerine-wallet-browser-f7d4a1080df6d1c8ea5f68f88b01caea065b5e92.zip
add documentation
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/seed-phrase-verifier.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/scripts/lib/seed-phrase-verifier.js b/app/scripts/lib/seed-phrase-verifier.js
index 1f35c2c67..9cea22029 100644
--- a/app/scripts/lib/seed-phrase-verifier.js
+++ b/app/scripts/lib/seed-phrase-verifier.js
@@ -2,6 +2,11 @@ const KeyringController = require('eth-keyring-controller')
const seedPhraseVerifier = {
+ // Verifies if the seed words can restore the accounts.
+ //
+ // The seed words can recreate the primary keyring and the accounts belonging to it.
+ // The created accounts in the primary keyring are always the same.
+ // The keyring always creates the accounts in the same sequence.
verifyAccounts (createdAccounts, seedWords) {
return new Promise((resolve, reject) => {