aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/lib/lost-accounts-notice.js
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-02-15 05:03:21 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-02-21 01:48:46 +0800
commit3c73781787f7aab6cdba0b738e4844a26aab5d8e (patch)
tree5a98f0acdcda6d3dd1a8368be6bb0ddf77c8fa6a /old-ui/lib/lost-accounts-notice.js
parent41f89ac7edf994f3d15d32d3d82d8d2b03dec481 (diff)
downloadtangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.gz
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.bz2
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.lz
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.xz
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.zst
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.zip
Delete old-ui folder
Diffstat (limited to 'old-ui/lib/lost-accounts-notice.js')
-rw-r--r--old-ui/lib/lost-accounts-notice.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/old-ui/lib/lost-accounts-notice.js b/old-ui/lib/lost-accounts-notice.js
deleted file mode 100644
index 948b13db6..000000000
--- a/old-ui/lib/lost-accounts-notice.js
+++ /dev/null
@@ -1,23 +0,0 @@
-const summary = require('../app/util').addressSummary
-
-module.exports = function (lostAccounts) {
- return {
- date: new Date().toDateString(),
- title: 'Account Problem Caught',
- body: `MetaMask has fixed a bug where some accounts were previously mis-generated. This was a rare issue, but you were affected!
-
-We have successfully imported the accounts that were mis-generated, but they will no longer be recovered with your normal seed phrase.
-
-We have marked the affected accounts as "Loose", and recommend you transfer ether and tokens away from those accounts, or export & back them up elsewhere.
-
-Your affected accounts are:
-${lostAccounts.map(acct => ` - ${summary(acct)}`).join('\n')}
-
-These accounts have been marked as "Loose" so they will be easy to recognize in the account list.
-
-For more information, please read [our blog post.][1]
-
-[1]: https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd#.7d8ktj4h3
- `,
- }
-}