mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix kovan chain ID constant (#8913)
This commit is contained in:
parent
b0014a9b35
commit
f97f95cc86
@ -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'
|
||||
|
@ -82,7 +82,7 @@ describe('NetworkController', function () {
|
||||
input: '0x4',
|
||||
expected: 'Rinkeby',
|
||||
}, {
|
||||
input: '0x42',
|
||||
input: '0x2a',
|
||||
expected: 'Kovan',
|
||||
}, {
|
||||
input: 'ropsten',
|
||||
|
Loading…
Reference in New Issue
Block a user