From 94a07a465148fd53913e93c4888fe2d27bf866db Mon Sep 17 00:00:00 2001 From: imabdulbasit Date: Mon, 9 Dec 2024 15:19:03 +0500 Subject: [PATCH] fix env var for permissioned_stake_table --- utils/src/deployer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/src/deployer.rs b/utils/src/deployer.rs index bf62d7157..080e143f4 100644 --- a/utils/src/deployer.rs +++ b/utils/src/deployer.rs @@ -51,7 +51,7 @@ pub struct DeployedContracts { fee_contract_proxy: Option
, /// Use an already-deployed PermissonedStakeTable.sol proxy instead of deploying a new one. - #[clap(long, env = Contract::FeeContractProxy)] + #[clap(long, env = Contract::PermissonedStakeTable)] permissioned_stake_table: Option
, }