Skip to content

Commit

Permalink
fix kovan chain ID constant
Browse files Browse the repository at this point in the history
  • Loading branch information
rekmarks committed Jul 3, 2020
1 parent b0014a9 commit 4b600de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/scripts/controllers/network/enums.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('NetworkController', function () {
input: '0x4',
expected: 'Rinkeby',
}, {
input: '0x42',
input: '0x2a',
expected: 'Kovan',
}, {
input: 'ropsten',
Expand Down

0 comments on commit 4b600de

Please sign in to comment.