Commit ea7a127a authored by yann300's avatar yann300

should not be 0x prefixed

parent 605d443a
...@@ -48,7 +48,7 @@ export async function extractHexValue (location, storageResolver, byteLength) { ...@@ -48,7 +48,7 @@ export async function extractHexValue (location, storageResolver, byteLength) {
try { try {
slotvalue = await readFromStorage(location.slot, storageResolver) slotvalue = await readFromStorage(location.slot, storageResolver)
} catch (e) { } catch (e) {
return '0x' return ''
} }
return extractHexByteSlice(slotvalue, byteLength, location.offset) return extractHexByteSlice(slotvalue, byteLength, location.offset)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment