From 3461f599c6be9bbee59e4f3e97cf9e95cb861914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Mart=C3=ADnez?= Date: Thu, 7 Jan 2021 12:10:25 +0100 Subject: [PATCH] Remove async from abstract method --- src/contractManager/ContractVersionUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contractManager/ContractVersionUtils.ts b/src/contractManager/ContractVersionUtils.ts index c721f358..8271f3ff 100644 --- a/src/contractManager/ContractVersionUtils.ts +++ b/src/contractManager/ContractVersionUtils.ts @@ -13,7 +13,7 @@ abstract class ContractVersionUtils { return this.contract.call('getModules', []) } - abstract async isModuleEnabled(moduleAddress: Address): Promise + abstract isModuleEnabled(moduleAddress: Address): Promise async encodeEnableModule(moduleAddress: Address): Promise { return this.contract.encode('enableModule', [moduleAddress])