Skip to content

Commit 4e0e2e7

Browse files
committed
fix: lint again
1 parent ec6c084 commit 4e0e2e7

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/indexer-agent/src/agent.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ export class Agent {
301301
})
302302
await operator.dipsManager.ensureAgreementRules()
303303
} else {
304-
logger.debug('DIPs is disabled, skipping indexing rule enforcement')
304+
logger.debug(
305+
'DIPs is disabled, skipping indexing rule enforcement',
306+
)
305307
}
306308
logger.trace('Fetching indexing rules', {
307309
protocolNetwork: network.specification.networkIdentifier,

packages/indexer-common/src/indexing-fees/dips.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,11 @@ export class DipsManager {
127127
cancelled_at: null,
128128
},
129129
})
130-
this.logger.debug(`Ensuring indexing rules for ${indexingAgreements.length} agreement${indexingAgreements.length === 1 ? '' : 's'}`)
130+
this.logger.debug(
131+
`Ensuring indexing rules for ${indexingAgreements.length} agreement${
132+
indexingAgreements.length === 1 ? '' : 's'
133+
}`,
134+
)
131135
// For each agreement, check that there is an indexing rule to always
132136
// allocate to the agreement's subgraphDeploymentId, and if not, create one
133137
for (const agreement of indexingAgreements) {

0 commit comments

Comments
 (0)