ESLint fix

This commit is contained in:
Victor Baranov 2019-01-10 19:48:09 +03:00
parent f76ec60f81
commit 137a2cb7af
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const getExplorerTokenLinkFor = (tokenAddress, account, network) => {
if (POAIDs.includes(parseInt(network))) {
return `https://blockscout.com/poa/${prefix}/address/${tokenAddress}`
} else if (RSKIDs.includes(parseInt(network))) {
return `https://explorer.rsk.co/token/${tokenAddress}/account/${account}`
return `https://explorer.rsk.co/token/${tokenAddress}/account/${account}`
} else {
return `https://${prefix}etherscan.io/token/${tokenAddress}?a=${account}`
}