Skip to content

Commit 01c1e9a

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

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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) : []

packages/token-distribution/scripts/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async function build() {
144144
if (contractCompilationNeeded) {
145145
console.log('Compiling contracts...')
146146

147-
// // Copy working TypeChain modules from contracts package to fix compatibility
147+
// Copy working TypeChain modules from contracts package to fix compatibility
148148
// console.log('Copying TypeChain modules from contracts package...')
149149
// execSync('cp -r ../contracts/node_modules/@typechain ../contracts/node_modules/typechain ./node_modules/', {
150150
// stdio: 'inherit',

0 commit comments

Comments
 (0)