diff options
Merge branch 'master' into new-faucet
Diffstat (limited to 'ui')
-rw-r--r-- | ui/lib/account-link.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index a6b120c63..ff52d9c54 100644 --- a/ui/lib/account-link.js +++ b/ui/lib/account-link.js @@ -7,10 +7,10 @@ module.exports = function(address, network) { link = `http://etherscan.io/address/${address}` break case 2: // morden test net - link = `http://testnet.etherscan.io/address/${address}` + link = `http://morden.etherscan.io/address/${address}` break case 3: // ropsten test net - link = '' + link = `http://testnet.etherscan.io/address/${address}` break default: link = '' |