Skip to content

Commit

Permalink
Remove async from abstract method
Browse files Browse the repository at this point in the history
  • Loading branch information
germartinez committed Jan 7, 2021
1 parent 0181764 commit 3461f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contractManager/ContractVersionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class ContractVersionUtils {
return this.contract.call('getModules', [])
}

abstract async isModuleEnabled(moduleAddress: Address): Promise<boolean>
abstract isModuleEnabled(moduleAddress: Address): Promise<boolean>

async encodeEnableModule(moduleAddress: Address): Promise<string> {
return this.contract.encode('enableModule', [moduleAddress])
Expand Down

0 comments on commit 3461f59

Please sign in to comment.