@@ -104,7 +104,6 @@ export const getRemarksFromBlocks = (blocks: Block[]): Remark[] => {
104104 const r : Remark = {
105105 block : row . block ,
106106 caller : call . caller ,
107- extrinsicHash : call . extrinsicHash ,
108107 interaction_type : meta . type ,
109108 version : meta . version ,
110109 remark : remark ,
@@ -167,7 +166,6 @@ export const getBlockCallsFromSignedBlock = async (
167166 call : "system.remark" ,
168167 value : extrinsic . args . toString ( ) ,
169168 caller : encodeAddress ( extrinsic . signer . toString ( ) , ss58Format ) ,
170- extrinsicHash : extrinsic . hash . toString ( ) ,
171169 } ) ;
172170 } else if ( isUtilityBatch ( extrinsic . method as TCall ) ) {
173171 // @ts -ignore
@@ -203,22 +201,19 @@ export const getBlockCallsFromSignedBlock = async (
203201 call : `${ el . section } .${ el . method } ` ,
204202 value : el . args . toString ( ) ,
205203 caller : encodeAddress ( extrinsic . signer . toString ( ) , ss58Format ) ,
206- extrinsicHash : extrinsic . hash . toString ( ) ,
207204 } as BlockCall ) ;
208205 } else {
209206 batchRoot = {
210207 call : `${ el . section } .${ el . method } ` ,
211208 value : el . args . toString ( ) ,
212209 caller : encodeAddress ( extrinsic . signer . toString ( ) , ss58Format ) ,
213- extrinsicHash : extrinsic . hash . toString ( ) ,
214210 } as BlockCall ;
215211 }
216212 } else {
217213 batchExtras . push ( {
218214 call : `${ el . section } .${ el . method } ` ,
219215 value : el . args . toString ( ) ,
220216 caller : encodeAddress ( extrinsic . signer . toString ( ) , ss58Format ) ,
221- extrinsicHash : extrinsic . hash . toString ( ) ,
222217 } as BlockCall ) ;
223218 }
224219 } ) ;
0 commit comments