From c2c1b444eb84d0d0a8f4518ee48d34cc6dc1ea36 Mon Sep 17 00:00:00 2001 From: Gerardo Nardelli Date: Thu, 19 Dec 2024 16:10:15 -0300 Subject: [PATCH] evm: Remove redundant threshold setting --- evm/script/helpers/DeployWormholeNttBase.sol | 4 ---- 1 file changed, 4 deletions(-) diff --git a/evm/script/helpers/DeployWormholeNttBase.sol b/evm/script/helpers/DeployWormholeNttBase.sol index 848b3cfda..42690a352 100644 --- a/evm/script/helpers/DeployWormholeNttBase.sol +++ b/evm/script/helpers/DeployWormholeNttBase.sol @@ -91,10 +91,6 @@ contract DeployWormholeNttBase is ParseNttConfig { INttManager(nttManager).setOutboundLimit(outboundLimit); console2.log("Outbound rate limit set on NttManager: ", outboundLimit); } - - // Hardcoded to one since these scripts handle Wormhole-only deployments. - INttManager(nttManager).setThreshold(1); - console2.log("Threshold set on NttManager: %d", uint256(1)); } function _readEnvVariables() internal view returns (DeploymentParams memory params) {