Skip to content

Commit

Permalink
MEX-316: remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
dragos-rebegea committed Jul 14, 2023
1 parent 938f9b6 commit 5618622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/governance/services/governance.abi.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ export class GovernanceAbiService
remoteTtl: CacheTtlInfo.ContractState.remoteTtl,
localTtl: CacheTtlInfo.ContractState.localTtl,
})
async proposals(scAddress: string, userAddress?: string): Promise<GovernanceProposal[]> {
return await this.proposalsRaw(scAddress, userAddress);
async proposals(scAddress: string): Promise<GovernanceProposal[]> {
return await this.proposalsRaw(scAddress);
}

async proposalsRaw(scAddress: string): Promise<GovernanceProposal[]> {
Expand Down

0 comments on commit 5618622

Please sign in to comment.