Skip to content

Commit

Permalink
indexer-service query logs: convert BigInt fees to string
Browse files Browse the repository at this point in the history
  • Loading branch information
aasseman committed May 21, 2022
1 parent 35a3976 commit 65876d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/indexer-service/src/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class QueryProcessor implements QueryProcessorInterface {

this.logger.info('Done executing paid query', {
deployment: subgraphDeploymentID.ipfsHash,
fees: parsedReceipt.fees,
fees: parsedReceipt.fees.toBigInt().toString(),
query: query,
responseTime: (response as any).responseTime,
})
Expand Down

0 comments on commit 65876d8

Please sign in to comment.