@@ -121,13 +121,23 @@ debug.traceBlock("", {disableStack: true, disableMemory: true, disableStorage: t
121
121
debug . traceBlockByHash ( "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" ) ;
122
122
123
123
// $ExpectType Promise<any>
124
- debug . traceBlockByHash ( "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" , { disableStack : true , disableMemory : true , disableStorage : true } ) ;
124
+ debug . traceBlockByHash (
125
+ "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" ,
126
+ { disableStack : true , disableMemory : true , disableStorage : true }
127
+ ) ;
125
128
126
129
// $ExpectType Promise<any>
127
- debug . traceBlockByHash ( "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" , ( error : Error , result : any ) => { } ) ;
130
+ debug . traceBlockByHash (
131
+ "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" ,
132
+ ( error : Error , result : any ) => { }
133
+ ) ;
128
134
129
135
// $ExpectType Promise<any>
130
- debug . traceBlockByHash ( "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" , { disableStack : true , disableMemory : true , disableStorage : true } , ( error : Error , result : any ) => { } ) ;
136
+ debug . traceBlockByHash (
137
+ "0x07801257594649d586712d84357b6626d81f33465519ba7994de585f3adf7f06" ,
138
+ { disableStack : true , disableMemory : true , disableStorage : true } ,
139
+ ( error : Error , result : any ) => { }
140
+ ) ;
131
141
132
142
// $ExpectType Promise<any>
133
143
debug . traceBlockByNumber ( 10 ) ;
@@ -157,13 +167,23 @@ debug.traceBlockFromFile("", {disableStack: true, disableMemory: true, disableSt
157
167
debug . traceTransaction ( "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" ) ;
158
168
159
169
// $ExpectType Promise<TraceTransaction>
160
- debug . traceTransaction ( "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" , { disableStack : true , disableMemory : true , disableStorage : true } ) ;
170
+ debug . traceTransaction (
171
+ "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" ,
172
+ { disableStack : true , disableMemory : true , disableStorage : true }
173
+ ) ;
161
174
162
175
// $ExpectType Promise<TraceTransaction>
163
- debug . traceTransaction ( "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" , ( error : Error , result : TraceTransaction ) => { } ) ;
176
+ debug . traceTransaction (
177
+ "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" ,
178
+ ( error : Error , result : TraceTransaction ) => { }
179
+ ) ;
164
180
165
181
// $ExpectType Promise<TraceTransaction>
166
- debug . traceTransaction ( "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" , { disableStack : true , disableMemory : true , disableStorage : true } , ( error : Error , result : TraceTransaction ) => { } ) ;
182
+ debug . traceTransaction (
183
+ "0xfc9359e49278b7ba99f59edac0e3de49956e46e530a53c15aa71226b7aa92c6f" ,
184
+ { disableStack : true , disableMemory : true , disableStorage : true } ,
185
+ ( error : Error , result : TraceTransaction ) => { }
186
+ ) ;
167
187
168
188
// $ExpectType Promise<any>
169
189
debug . verbosity ( 5 ) ;
0 commit comments