diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-04-23 04:32:56 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-04-23 04:32:56 +0800 |
commit | 875a0731ddab06f9db2bd5bc67471f897ef99c3d (patch) | |
tree | 72d912242a2bdb1dd8c8a7550dff0bce120d1c1a /app/scripts/migrations | |
parent | db85827b2be19d7bfc7dfaeec4786c4d051b6629 (diff) | |
download | tangerine-wallet-browser-875a0731ddab06f9db2bd5bc67471f897ef99c3d.tar.gz tangerine-wallet-browser-875a0731ddab06f9db2bd5bc67471f897ef99c3d.tar.zst tangerine-wallet-browser-875a0731ddab06f9db2bd5bc67471f897ef99c3d.zip |
Deprecate rawtestrpc.metamask.io
This migration will move users who have their clients configured to point at `rawtestrpc.metamask.io` to point at our new test-net RPC, `testrpc.metamask.io`.
Diffstat (limited to 'app/scripts/migrations')
-rw-r--r-- | app/scripts/migrations/002.js | 10 | ||||
-rw-r--r-- | app/scripts/migrations/003.js | 13 |
2 files changed, 19 insertions, 4 deletions
diff --git a/app/scripts/migrations/002.js b/app/scripts/migrations/002.js index ab6a256ab..087f8bcd9 100644 --- a/app/scripts/migrations/002.js +++ b/app/scripts/migrations/002.js @@ -1,11 +1,13 @@ +var oldTestRpc = 'https://rawtestrpc.metamask.io/' +var newTestRpc = 'https://testrpc.metamask.io/' + module.exports = { - version: 2, + version: 3, migrate: function(data) { try { - if (data.config.provider.type === 'etherscan') { - data.config.provider.type = 'rpc' - data.config.provider.rpcTarget = 'https://rpc.metamask.io/' + if (data.config.provider.rpcTarget === oldTestRpc) { + data.config.provider.rpcTarget = newTestRpc } } catch (e) {} return data diff --git a/app/scripts/migrations/003.js b/app/scripts/migrations/003.js new file mode 100644 index 000000000..ab6a256ab --- /dev/null +++ b/app/scripts/migrations/003.js @@ -0,0 +1,13 @@ +module.exports = { + version: 2, + + migrate: function(data) { + try { + if (data.config.provider.type === 'etherscan') { + data.config.provider.type = 'rpc' + data.config.provider.rpcTarget = 'https://rpc.metamask.io/' + } + } catch (e) {} + return data + } +} |