aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-04-23 05:41:48 +0800
committerDan Finlay <somniac@me.com>2016-04-23 05:41:48 +0800
commitee4f6b57adfebf71e19477574779861057a3f4b3 (patch)
tree1c214db0264ab0cc1ddb04ee023bcf2702b17e92
parentdb85827b2be19d7bfc7dfaeec4786c4d051b6629 (diff)
parent33b344d276f6cf12f2a89d5e226ceebd6260cd7e (diff)
downloadtangerine-wallet-browser-ee4f6b57adfebf71e19477574779861057a3f4b3.tar.gz
tangerine-wallet-browser-ee4f6b57adfebf71e19477574779861057a3f4b3.tar.zst
tangerine-wallet-browser-ee4f6b57adfebf71e19477574779861057a3f4b3.zip
Merge pull request #135 from MetaMask/DeprecateRawTestRpc
Migrate all users off `rawtestrpc` test rpc
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/scripts/lib/migrations.js2
-rw-r--r--app/scripts/migrations/003.js15
-rw-r--r--test/unit/migrations-test.js21
4 files changed, 35 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2bcf006f..0099aa0ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
- Added transaction list to account detail view.
- Fix bug on config screen where current RPC address was always displayed wrong.
- Fixed bug where entering a decimal value when sending a transaction would result in sending the wrong amount.
+- Users have been migrated from old test-net RPC to a newer test-net RPC.
# 1.5.1 2016-04-15
diff --git a/app/scripts/lib/migrations.js b/app/scripts/lib/migrations.js
index cab5bec66..0b8e6265c 100644
--- a/app/scripts/lib/migrations.js
+++ b/app/scripts/lib/migrations.js
@@ -2,7 +2,9 @@ var path = require('path')
var fs = require('fs')
var migration2 = require('../migrations/002')
+var migration3 = require('../migrations/003')
module.exports = [
migration2,
+ migration3,
]
diff --git a/app/scripts/migrations/003.js b/app/scripts/migrations/003.js
new file mode 100644
index 000000000..087f8bcd9
--- /dev/null
+++ b/app/scripts/migrations/003.js
@@ -0,0 +1,15 @@
+var oldTestRpc = 'https://rawtestrpc.metamask.io/'
+var newTestRpc = 'https://testrpc.metamask.io/'
+
+module.exports = {
+ version: 3,
+
+ migrate: function(data) {
+ try {
+ if (data.config.provider.rpcTarget === oldTestRpc) {
+ data.config.provider.rpcTarget = newTestRpc
+ }
+ } catch (e) {}
+ return data
+ }
+}
diff --git a/test/unit/migrations-test.js b/test/unit/migrations-test.js
index 092c0eccd..3b347530a 100644
--- a/test/unit/migrations-test.js
+++ b/test/unit/migrations-test.js
@@ -2,14 +2,27 @@ var assert = require('assert')
var path = require('path')
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
+
var migration2 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '002'))
+var migration3 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '003'))
describe('wallet1 is migrated successfully', function() {
- it('should convert etherscan provider', function(done) {
- var result = migration2.migrate(wallet1.data)
- assert.equal(result.config.provider.type, 'rpc', 'provider should be rpc')
- assert.equal(result.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'provider should be our rpc')
+ it('should convert providers', function(done) {
+
+ wallet1.data.config.provider = { type: 'etherscan', rpcTarget: null }
+
+ var firstResult = migration2.migrate(wallet1.data)
+ assert.equal(firstResult.config.provider.type, 'rpc', 'provider should be rpc')
+ assert.equal(firstResult.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'main provider should be our rpc')
+
+ var oldTestRpc = 'https://rawtestrpc.metamask.io/'
+ var newTestRpc = 'https://testrpc.metamask.io/'
+ firstResult.config.provider.rpcTarget = oldTestRpc
+
+ var secondResult = migration3.migrate(firstResult)
+ assert.equal(secondResult.config.provider.rpcTarget, newTestRpc)
+
done()
})
})