From d601e3b299d87aa6f42bbe686c88ca3f4257a316 Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Tue, 21 Sep 2021 07:52:57 +1000 Subject: [PATCH] [MINOR] Node rules log fix (#248) * bug fix Signed-off-by: Sally MacFarlane --- migrations/3_deploy_node_ingress_rules_contract.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/migrations/3_deploy_node_ingress_rules_contract.js b/migrations/3_deploy_node_ingress_rules_contract.js index ab4f4d32..d4396349 100644 --- a/migrations/3_deploy_node_ingress_rules_contract.js +++ b/migrations/3_deploy_node_ingress_rules_contract.js @@ -29,8 +29,7 @@ module.exports = async(deployer, network) => { // exit early if we are NOT redeploying this contract if (retainCurrentRulesContract) { console.log("not deploying NodeRules because retain=" + retainCurrentRulesContract); - let nodeRulesContract = await NodeRules.deployed(); - logCurrentAllowlist(nodeRulesContract); + logCurrentAllowlist(await Rules.deployed()); return; } if (! nodeIngress) {