Skip to content

Commit

Permalink
Fix lint (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored and michellebrier committed Oct 9, 2023
1 parent 8112db3 commit 30ac410
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ export default class Governance {
queryStartBlock: number = QUERY_PROPOSAL_START_BLOCK
) {
await this.aud.hasPermissions()
const proposals: ProposalId[] = (await this.getContract().getInProgressProposals(
queryStartBlock
)).map((p: string) => parseInt(p))
const proposals: ProposalId[] = (
await this.getContract().getInProgressProposals(queryStartBlock)
).map((p: string) => parseInt(p))
return proposals
}

Expand Down

0 comments on commit 30ac410

Please sign in to comment.