From 83c7d42be8857309ce674e92056f8fbccb8b7320 Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 12 Jul 2021 11:56:22 +0200 Subject: [PATCH] should not be 0x prefixed --- libs/remix-debug/src/solidity-decoder/types/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-debug/src/solidity-decoder/types/util.ts b/libs/remix-debug/src/solidity-decoder/types/util.ts index 30748c9aca..cd83d1cd32 100644 --- a/libs/remix-debug/src/solidity-decoder/types/util.ts +++ b/libs/remix-debug/src/solidity-decoder/types/util.ts @@ -48,7 +48,7 @@ export async function extractHexValue (location, storageResolver, byteLength) { try { slotvalue = await readFromStorage(location.slot, storageResolver) } catch (e) { - return '0x' + return '' } return extractHexByteSlice(slotvalue, byteLength, location.offset) }