diff options
author | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
---|---|---|
committer | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
commit | 4910e2f9bdf1305469edd9c55c59fb90d0e5267d (patch) | |
tree | 81309b12791e0d505b914544ea78d31f5509c50b | |
parent | 6ce0bc4b11ccb7ffae4f58980db0301dc418c9c0 (diff) | |
download | tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.gz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.bz2 tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.lz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.xz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.zst tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.zip |
remove network Id 2 from explorer link and Add network Id 3
-rw-r--r-- | test/unit/explorer-link-test.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item.js | 3 | ||||
-rw-r--r-- | ui/lib/explorer-link.js | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/test/unit/explorer-link-test.js b/test/unit/explorer-link-test.js index 961b400fd..8aa58bff9 100644 --- a/test/unit/explorer-link-test.js +++ b/test/unit/explorer-link-test.js @@ -4,7 +4,7 @@ var linkGen = require('../../ui/lib/explorer-link') describe('explorer-link', function() { it('adds testnet prefix to morden test network', function() { - var result = linkGen('hash', '2') + var result = linkGen('hash', '3') assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected') }) diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 491e90c7c..f92a4ab2e 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -27,7 +27,7 @@ TransactionListItem.prototype.render = function () { let isLinkable = false const numericNet = parseInt(network) - isLinkable = numericNet === 1 || numericNet === 2 + isLinkable = numericNet === 1 || numericNet === 3 var isMsg = ('msgParams' in transaction) var isTx = ('txParams' in transaction) @@ -41,7 +41,6 @@ TransactionListItem.prototype.render = function () { } const isClickable = ('hash' in transaction && isLinkable) || isPending - return ( h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, { onClick: (event) => { diff --git a/ui/lib/explorer-link.js b/ui/lib/explorer-link.js index 2993d1cf1..dc6be2984 100644 --- a/ui/lib/explorer-link.js +++ b/ui/lib/explorer-link.js @@ -5,7 +5,7 @@ module.exports = function (hash, network) { case 1: // main net prefix = '' break - case 2: // morden test net + case 3: // morden test net prefix = 'testnet.' break default: |