Skip to content

Commit ce9b114

Browse files
committed
chore: fix some minor issues in comments
Signed-off-by: jishudashen <[email protected]>
1 parent bdc6613 commit ce9b114

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/contracts/test/tests/unit/gns.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ describe.skip('L1GNS @skip-on-coverage', () => {
13081308
}
13091309

13101310
const subgraph0 = await publishCurateAndSendSubgraph(async (_subgraphId) => {
1311-
// We add another curator before transferring, so the the subgraph doesn't
1311+
// We add another curator before transferring, so the subgraph doesn't
13121312
// run out of withdrawable GRT and we can test that it denies the specific curator
13131313
// because they have sent their signal to L2, not because the subgraph is out of GRT.
13141314
await gns.connect(another).mintSignal(_subgraphId, toGRT('1000'), toBN(0))

packages/contracts/test/tests/unit/staking/allocation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ describe('Staking:Allocation', () => {
272272
expect(afterAlloc.distributedRebates).eq(beforeAlloc.distributedRebates.add(queryRebates).add(delegationRewards))
273273
expect(alloStateAfter).eq(alloStateBefore)
274274

275-
// // Funds distributed to indexer or restaked
275+
// Funds distributed to indexer or restaked
276276
const restake = (await staking.rewardsDestination(indexer.address)) === AddressZero
277277
if (restake) {
278278
expect(afterIndexerBalance).eq(beforeIndexerBalance)

packages/sdk/src/deployments/network/deployment/address-book.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class GraphNetworkAddressBook extends AddressBook<GraphChainId, GraphNetw
1616
assertAddressBookJson(json: unknown): asserts json is AddressBookJson<GraphChainId, GraphNetworkContractName> {
1717
this._assertAddressBookJson(json)
1818

19-
// // Validate contract names
19+
// Validate contract names
2020
const contractList = json[this.chainId]
2121

2222
const contractNames = contractList ? Object.keys(contractList) : []

0 commit comments

Comments
 (0)