mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Fix issue with chainId comparison in sign typed message param validation (#11900)
This commit is contained in:
parent
0d63aa0402
commit
33849bfec6
@ -204,7 +204,7 @@ export default class TypedMessageManager extends EventEmitter {
|
||||
`Cannot sign messages for chainId "${chainId}", because MetaMask is switching networks.`,
|
||||
);
|
||||
if (typeof chainId === 'string') {
|
||||
chainId = parseInt(chainId, 16);
|
||||
chainId = parseInt(chainId, chainId.startsWith('0x') ? 16 : 10);
|
||||
}
|
||||
assert.equal(
|
||||
chainId,
|
||||
|
Loading…
Reference in New Issue
Block a user