From 7d38c4ccb657409f123bde6709ddff6418c90c89 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 21 Nov 2016 19:11:55 -0800 Subject: Add ropsten link support --- ui/lib/account-link.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/lib') diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index a6b120c63..a77422142 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 = '' break case 3: // ropsten test net - link = '' + link = `http://testnet.etherscan.io/address/${address}` break default: link = '' -- cgit v1.2.3 From 694f34ae9a11dbe0ea6f484defe2d8f9e55da82a Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 21 Nov 2016 19:43:59 -0800 Subject: Add temporary morden explorer link support --- ui/lib/account-link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/lib') diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index a77422142..ff52d9c54 100644 --- a/ui/lib/account-link.js +++ b/ui/lib/account-link.js @@ -7,7 +7,7 @@ module.exports = function(address, network) { link = `http://etherscan.io/address/${address}` break case 2: // morden test net - link = '' + link = `http://morden.etherscan.io/address/${address}` break case 3: // ropsten test net link = `http://testnet.etherscan.io/address/${address}` -- cgit v1.2.3