From 31c4710d563ceda3087fc53b7e9550484790b8ae Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Mon, 8 Jan 2024 18:44:14 +0200 Subject: [PATCH] Remove manifest manipulations for mainnet upgrade script --- proxy/migrations/upgradeMainnet.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/proxy/migrations/upgradeMainnet.ts b/proxy/migrations/upgradeMainnet.ts index 30819c9b1..7797df38d 100644 --- a/proxy/migrations/upgradeMainnet.ts +++ b/proxy/migrations/upgradeMainnet.ts @@ -4,7 +4,6 @@ import { promises as fs } from "fs"; import { AutoSubmitter, Upgrader } from "@skalenetwork/upgrade-tools"; import { SkaleABIFile } from "@skalenetwork/upgrade-tools/dist/src/types/SkaleABIFile"; import { contracts } from "./deployMainnet"; -import { manifestSetup } from "./generateManifest"; import { MessageProxyForMainnet } from "../typechain"; class ImaMainnetUpgrader extends Upgrader { @@ -65,8 +64,6 @@ async function getImaMainnetAbiAndAddress(): Promise { } async function main() { - const pathToManifest: string = process.env.MANIFEST || ""; - await manifestSetup(pathToManifest); const upgrader = new ImaMainnetUpgrader( "1.5.0", await getImaMainnetAbiAndAddress(),