Skip to content

Commit c0921d3

Browse files
committed
FT: add debugging
1 parent 48f1996 commit c0921d3

File tree

1 file changed

+25
-22
lines changed

1 file changed

+25
-22
lines changed

watcher/src/watchers/FTEVMWatcher.ts

+25-22
Original file line numberDiff line numberDiff line change
@@ -371,27 +371,26 @@ export class FTEVMWatcher extends Watcher {
371371
if (!rpc) {
372372
throw new Error(`${this.chain} RPC is not defined!`);
373373
}
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;
395394
if (result) {
396395
// Convert to Ethers compatible type
397396
return result.map((l: Log) => ({
@@ -401,7 +400,11 @@ export class FTEVMWatcher extends Watcher {
401400
logIndex: BigNumber.from(l.logIndex).toNumber(),
402401
}));
403402
}
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+
);
405408
}
406409

407410
normalizeAddress(address: string): string {

0 commit comments

Comments
 (0)