diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-03-28 01:55:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-28 01:55:40 +0800 |
commit | bd4a68531bc915e70964e28002c3a59d85853dfa (patch) | |
tree | 74cfe63e06aa2b08ebd952895674d6eb346869ee /ui/lib | |
parent | 1c956bdb6209ba436a0de99a0f4440696935bd99 (diff) | |
download | tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar.gz tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar.bz2 tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar.lz tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar.xz tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.tar.zst tangerine-wallet-browser-bd4a68531bc915e70964e28002c3a59d85853dfa.zip |
block explorer - account link - ropsten
etherscan differentiates between "attacked ropsten" vs "revived ropsten"
https://ropsten.etherscan.io/ is the revived ropsten
Diffstat (limited to 'ui/lib')
-rw-r--r-- | ui/lib/account-link.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index 948f32da1..4f27b35c0 100644 --- a/ui/lib/account-link.js +++ b/ui/lib/account-link.js @@ -9,7 +9,7 @@ module.exports = function (address, network) { link = `http://morden.etherscan.io/address/${address}` break case 3: // ropsten test net - link = `http://testnet.etherscan.io/address/${address}` + link = `http://ropsten.etherscan.io/address/${address}` break case 42: // kovan test net link = `http://kovan.etherscan.io/address/${address}` |