fix: update regex to be Firefox compatible

pull/7/head
Andre Medeiros 6 years ago
parent d4a87381dd
commit 4f975021a7
  1. 2
      remix-debug/src/solidity-decoder/types/util.js

@ -75,7 +75,7 @@ async function extractHexValue (location, storageResolver, byteLength) {
function toBN (value) {
if (value instanceof BN) {
return value
} else if (value.match && value.match(/^(?:0x)?(?<hash>[a-f0-9])*$/)) {
} else if (value.match && value.match(/^(0x)?([a-f0-9]*)$/)) {
value = ethutil.unpad(value.replace(/^(0x)/, ''))
value = new BN(value === '' ? '0' : value, 16)
} else if (!isNaN(value)) {

Loading…
Cancel
Save