diff --git a/packages/contracts/test/tests/unit/gns.test.ts b/packages/contracts/test/tests/unit/gns.test.ts index 8fd68d1c2..0fff454c8 100644 --- a/packages/contracts/test/tests/unit/gns.test.ts +++ b/packages/contracts/test/tests/unit/gns.test.ts @@ -1308,7 +1308,7 @@ describe.skip('L1GNS @skip-on-coverage', () => { } const subgraph0 = await publishCurateAndSendSubgraph(async (_subgraphId) => { - // We add another curator before transferring, so the the subgraph doesn't + // We add another curator before transferring, so the subgraph doesn't // run out of withdrawable GRT and we can test that it denies the specific curator // because they have sent their signal to L2, not because the subgraph is out of GRT. await gns.connect(another).mintSignal(_subgraphId, toGRT('1000'), toBN(0)) diff --git a/packages/contracts/test/tests/unit/staking/allocation.test.ts b/packages/contracts/test/tests/unit/staking/allocation.test.ts index 9bcf8e7d0..15bfb448b 100644 --- a/packages/contracts/test/tests/unit/staking/allocation.test.ts +++ b/packages/contracts/test/tests/unit/staking/allocation.test.ts @@ -272,7 +272,7 @@ describe('Staking:Allocation', () => { expect(afterAlloc.distributedRebates).eq(beforeAlloc.distributedRebates.add(queryRebates).add(delegationRewards)) expect(alloStateAfter).eq(alloStateBefore) - // // Funds distributed to indexer or restaked + // Funds distributed to indexer or restaked const restake = (await staking.rewardsDestination(indexer.address)) === AddressZero if (restake) { expect(afterIndexerBalance).eq(beforeIndexerBalance) diff --git a/packages/sdk/src/deployments/network/deployment/address-book.ts b/packages/sdk/src/deployments/network/deployment/address-book.ts index 22f5d9cb2..3d7544384 100644 --- a/packages/sdk/src/deployments/network/deployment/address-book.ts +++ b/packages/sdk/src/deployments/network/deployment/address-book.ts @@ -16,7 +16,7 @@ export class GraphNetworkAddressBook extends AddressBook { this._assertAddressBookJson(json) - // // Validate contract names + // Validate contract names const contractList = json[this.chainId] const contractNames = contractList ? Object.keys(contractList) : []