diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-06-22 04:18:32 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-06-22 04:18:32 +0800 |
commit | a08c3bc01b11fbd0e3a243359befbe9fc909edf4 (patch) | |
tree | b79b7324139945c429ca4b6c74715d8040fdf4e1 /app/scripts/migrations/003.js | |
parent | f7f8f8b1c50be39db22a7b10c6c6db007fe590aa (diff) | |
download | dexon-wallet-a08c3bc01b11fbd0e3a243359befbe9fc909edf4.tar.gz dexon-wallet-a08c3bc01b11fbd0e3a243359befbe9fc909edf4.tar.zst dexon-wallet-a08c3bc01b11fbd0e3a243359befbe9fc909edf4.zip |
Auto linted
Diffstat (limited to 'app/scripts/migrations/003.js')
-rw-r--r-- | app/scripts/migrations/003.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/migrations/003.js b/app/scripts/migrations/003.js index 087f8bcd..617c55c0 100644 --- a/app/scripts/migrations/003.js +++ b/app/scripts/migrations/003.js @@ -4,12 +4,12 @@ var newTestRpc = 'https://testrpc.metamask.io/' module.exports = { version: 3, - migrate: function(data) { + migrate: function (data) { try { if (data.config.provider.rpcTarget === oldTestRpc) { data.config.provider.rpcTarget = newTestRpc } } catch (e) {} return data - } + }, } |