From c4d8e12cdffeb32a599d9d3f1ade454419e3f304 Mon Sep 17 00:00:00 2001 From: marcello33 Date: Wed, 6 Dec 2023 13:28:23 +0100 Subject: [PATCH] Revert "chg: do not deploy StakeManagerTest" (#494) --- migrations/2_deploy_root_contracts.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/migrations/2_deploy_root_contracts.js b/migrations/2_deploy_root_contracts.js index 10444703..a485d550 100644 --- a/migrations/2_deploy_root_contracts.js +++ b/migrations/2_deploy_root_contracts.js @@ -190,12 +190,7 @@ module.exports = async function(deployer, network, accounts) { await deployer.deploy(RootChain) await deployer.deploy(RootChainProxy, RootChain.address, Registry.address, process.env.HEIMDALL_ID) await deployer.deploy(StateSender) - /* StakeManagerTest is only used in tests. - We avoid to deploy it in devnets as it requires huge amount of gas. - This is possible by using ganache `--chain.allowUnlimitedContractSize true` - but we're facing issues bumping ganache to v7.7.0 to allow that - */ - // await deployer.deploy(StakeManagerTestable) + await deployer.deploy(StakeManagerTestable) await deployer.deploy(StakeManagerTest) await deployer.deploy(DepositManager)