From 2936bf382b3ed73d2945cffcf8deacd7c7c85e9b Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 20 Apr 2017 14:43:55 +0200 Subject: [PATCH] remove hashedKey from storage value --- src/app/execution-context.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/execution-context.js b/src/app/execution-context.js index aff48787e4..46e36aea6e 100644 --- a/src/app/execution-context.js +++ b/src/app/execution-context.js @@ -42,7 +42,6 @@ class StateManagerCommonStorageDump extends StateManager { var stream = trie.createReadStream() stream.on('data', function (val) { storage['0x' + val.key.toString('hex')] = { - hashedKey: '0x' + val.key.toString('hex'), key: self.keyHashes[val.key.toString('hex')], value: '0x' + val.value.toString('hex') }