File tree 1 file changed +25
-22
lines changed
1 file changed +25
-22
lines changed Original file line number Diff line number Diff line change @@ -371,27 +371,26 @@ export class FTEVMWatcher extends Watcher {
371
371
if ( ! rpc ) {
372
372
throw new Error ( `${ this . chain } RPC is not defined!` ) ;
373
373
}
374
- const result = (
375
- await axios . post (
376
- rpc ,
377
- [
378
- {
379
- jsonrpc : '2.0' ,
380
- id : 1 ,
381
- method : 'eth_getLogs' ,
382
- params : [
383
- {
384
- fromBlock : `0x${ fromBlock . toString ( 16 ) } ` ,
385
- toBlock : `0x${ toBlock . toString ( 16 ) } ` ,
386
- address,
387
- topics,
388
- } ,
389
- ] ,
390
- } ,
391
- ] ,
392
- AXIOS_CONFIG_JSON
393
- )
394
- ) ?. data ?. [ 0 ] ?. result ;
374
+ const baseResult = await axios . post (
375
+ rpc ,
376
+ [
377
+ {
378
+ jsonrpc : '2.0' ,
379
+ id : 1 ,
380
+ method : 'eth_getLogs' ,
381
+ params : [
382
+ {
383
+ fromBlock : `0x${ fromBlock . toString ( 16 ) } ` ,
384
+ toBlock : `0x${ toBlock . toString ( 16 ) } ` ,
385
+ address,
386
+ topics,
387
+ } ,
388
+ ] ,
389
+ } ,
390
+ ] ,
391
+ AXIOS_CONFIG_JSON
392
+ ) ;
393
+ const result = baseResult ?. data ?. [ 0 ] ?. result ;
395
394
if ( result ) {
396
395
// Convert to Ethers compatible type
397
396
return result . map ( ( l : Log ) => ( {
@@ -401,7 +400,11 @@ export class FTEVMWatcher extends Watcher {
401
400
logIndex : BigNumber . from ( l . logIndex ) . toNumber ( ) ,
402
401
} ) ) ;
403
402
}
404
- throw new Error ( `Unable to parse result of eth_getLogs for ${ fromBlock } -${ toBlock } on ${ rpc } ` ) ;
403
+ throw new Error (
404
+ `Unable to parse result of eth_getLogs for ${ fromBlock } -${ toBlock } on ${ rpc } with result ${ JSON . stringify (
405
+ baseResult . data
406
+ ) } `
407
+ ) ;
405
408
}
406
409
407
410
normalizeAddress ( address : string ) : string {
You can’t perform that action at this time.
0 commit comments