File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ class StateManagerCommonStorageDump extends DefaultStateManager {
7171 const stream = trie . createReadStream ( )
7272
7373 stream . on ( 'data' , ( val ) => {
74- const value = decode ( val . value )
74+ const value : any = decode ( val . value )
7575 storage [ '0x' + val . key . toString ( 'hex' ) ] = {
7676 key : this . keyHashes [ val . key . toString ( 'hex' ) ] ,
77- value : '0x' + value . toString ( )
77+ value : '0x' + value . toString ( 'hex' )
7878 }
7979 } )
8080 stream . on ( 'end' , ( ) => {
Original file line number Diff line number Diff line change 155155 "commander" : " ^9.4.1" ,
156156 "core-js" : " ^3.6.5" ,
157157 "cors" : " ^2.8.5" ,
158+ "create-hash" : " ^1.2.0" ,
158159 "deep-equal" : " ^1.0.1" ,
159160 "document-register-element" : " 1.13.1" ,
160161 "eslint-config-prettier" : " ^8.5.0" ,
You can’t perform that action at this time.
0 commit comments