From cd9dd859ad97da2e1af1aafc8f846243aca941df Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 20 Apr 2017 14:16:29 +0200 Subject: [PATCH] fix storageSlot --- src/storage/storageViewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storageViewer.js b/src/storage/storageViewer.js index 472ce20603..ca117f5b6c 100644 --- a/src/storage/storageViewer.js +++ b/src/storage/storageViewer.js @@ -44,7 +44,7 @@ class StorageViewer { if (error) { callback(error) } else { - callback(null, storage[hashed] !== undefined ? storage[hashed] : null) + callback(null, storage) } }) }