1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Fix kovan chain ID constant (#8913)

This commit is contained in:
Erik Marks 2020-07-03 10:14:43 -07:00 committed by GitHub
parent b0014a9b35
commit f97f95cc86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ export const MAINNET_CHAIN_ID = '0x1'
export const ROPSTEN_CHAIN_ID = '0x3'
export const RINKEBY_CHAIN_ID = '0x4'
export const GOERLI_CHAIN_ID = '0x5'
export const KOVAN_CHAIN_ID = '0x42'
export const KOVAN_CHAIN_ID = '0x2a'
export const ROPSTEN_DISPLAY_NAME = 'Ropsten'
export const RINKEBY_DISPLAY_NAME = 'Rinkeby'

View File

@ -82,7 +82,7 @@ describe('NetworkController', function () {
input: '0x4',
expected: 'Rinkeby',
}, {
input: '0x42',
input: '0x2a',
expected: 'Kovan',
}, {
input: 'ropsten',