1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Merge pull request #855 from MetaMask/i834-RopstenLinks

Add ropsten link support
This commit is contained in:
Kevin Serrano 2016-11-22 10:23:01 -08:00 committed by GitHub
commit 2df6ebbd10
3 changed files with 12 additions and 4 deletions

View File

@ -2,6 +2,8 @@
## Current Master ## Current Master
- Make Ropsten transactions link to etherscan correctly.
## 2.13.9 2016-11-21 ## 2.13.9 2016-11-21
- Add support for the new, default Ropsten Test Network. - Add support for the new, default Ropsten Test Network.

View File

@ -3,9 +3,15 @@ var linkGen = require('../../ui/lib/account-link')
describe('account-link', function() { describe('account-link', function() {
it('adds testnet prefix to morden test network', function() { it('adds morden prefix to morden test network', function() {
var result = linkGen('account', '2') var result = linkGen('account', '2')
assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected') assert.notEqual(result.indexOf('morden'), -1, 'testnet included')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})
it('adds testnet prefix to ropsten test network', function() {
var result = linkGen('account', '3')
assert.notEqual(result.indexOf('testnet'), -1, 'testnet included')
assert.notEqual(result.indexOf('account'), -1, 'account included') assert.notEqual(result.indexOf('account'), -1, 'account included')
}) })

View File

@ -7,10 +7,10 @@ module.exports = function(address, network) {
link = `http://etherscan.io/address/${address}` link = `http://etherscan.io/address/${address}`
break break
case 2: // morden test net case 2: // morden test net
link = `http://testnet.etherscan.io/address/${address}` link = `http://morden.etherscan.io/address/${address}`
break break
case 3: // ropsten test net case 3: // ropsten test net
link = '' link = `http://testnet.etherscan.io/address/${address}`
break break
default: default:
link = '' link = ''