From 4f24fce9c82ae3d8c20a3b4ab07c5558879e335e Mon Sep 17 00:00:00 2001 From: Ivan Zhelyazkov Date: Fri, 23 Aug 2024 12:41:48 +0200 Subject: [PATCH] minor fix --- deploy/scripts/network/0002-Voucher.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/deploy/scripts/network/0002-Voucher.ts b/deploy/scripts/network/0002-Voucher.ts index 326ae69..9bd3f33 100644 --- a/deploy/scripts/network/0002-Voucher.ts +++ b/deploy/scripts/network/0002-Voucher.ts @@ -16,14 +16,6 @@ const func: DeployFunction = async ({ getNamedAccounts }: HardhatRuntimeEnvironm } ); - // Call post upgrade (required once per deployment) - await execute({ - name: InstanceName.Voucher, - methodName: 'postUpgrade', - args: ['0x'], - from: deployer - }); - return true; };