diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-11-22 02:58:49 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-11-22 02:58:49 +0800 |
commit | e8a83026248e6e27e6d801cf1713551eb740137a (patch) | |
tree | 528f87b75425d172db7f3d4b9b563a348535042b /ui/lib | |
parent | 37d836fa72c75945d436bd94feadb65aa95d7e5f (diff) | |
download | tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar.gz tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar.bz2 tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar.lz tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar.xz tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.tar.zst tangerine-wallet-browser-e8a83026248e6e27e6d801cf1713551eb740137a.zip |
Begin adding Ropsten support
Ropsten links will still not work until Etherscan publishes their ropsten link format.
At that time we will need to update ui/lib/account-link.js
Otherwise, fixes #831
Diffstat (limited to 'ui/lib')
-rw-r--r-- | ui/lib/account-link.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index eb958e22d..a6b120c63 100644 --- a/ui/lib/account-link.js +++ b/ui/lib/account-link.js @@ -9,6 +9,9 @@ module.exports = function(address, network) { case 2: // morden test net link = `http://testnet.etherscan.io/address/${address}` break + case 3: // ropsten test net + link = '' + break default: link = '' break |