From 9a2c91a56a94b1f089550bc816cf56d66c9e32e4 Mon Sep 17 00:00:00 2001 From: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Date: Tue, 24 Dec 2024 23:07:38 +0100 Subject: [PATCH] Update openzeppelin-proxy.ts --- libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts b/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts index 5f16219aa8..a2a50662a6 100644 --- a/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts +++ b/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts @@ -19,7 +19,7 @@ export class OpenZeppelinProxy extends Plugin { } async isConcerned(ast: ContractAST = {} as ContractAST): Promise { - // check in the AST if it's an upgradable contract + // check in the AST if it's an upgradeable contract const UUPSSymbol = ast.exportedSymbols && ast.exportedSymbols[UUPS] ? ast.exportedSymbols[UUPS][0] : null if (UUPSSymbol) {