diff --git a/libs/remix-lib/src/execution/execution-context.ts b/libs/remix-lib/src/execution/execution-context.ts index 5424ae0c58..296ab84766 100644 --- a/libs/remix-lib/src/execution/execution-context.ts +++ b/libs/remix-lib/src/execution/execution-context.ts @@ -25,7 +25,10 @@ if (typeof window !== 'undefined' && typeof window['ethereum'] !== 'undefined') */ class StateManagerCommonStorageDump extends StateManager { - keyHashes + /* + * dictionary containing keccak(b) as key and b as value. used to get the initial value from its hash + */ + keyHashes: { [key: string]: string } constructor () { super() this.keyHashes = {}