diff options
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/account-link.js')
-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 |