Skip to content

chore: fix some minor issues in comments #1194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/contracts/test/tests/unit/gns.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class GraphNetworkAddressBook extends AddressBook<GraphChainId, GraphNetw
assertAddressBookJson(json: unknown): asserts json is AddressBookJson<GraphChainId, GraphNetworkContractName> {
this._assertAddressBookJson(json)

// // Validate contract names
// Validate contract names
const contractList = json[this.chainId]

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