From 4d8889e1af8fd84107b180a7e544da58e609696e Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Mon, 6 May 2024 15:10:44 -0500 Subject: [PATCH] Update backend/src/util/gate-by-proposal.js fix typo in console log --- backend/src/util/gate-by-proposal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/util/gate-by-proposal.js b/backend/src/util/gate-by-proposal.js index aef1e60..2ba3c3d 100644 --- a/backend/src/util/gate-by-proposal.js +++ b/backend/src/util/gate-by-proposal.js @@ -15,7 +15,7 @@ const gateByProposal = async (enable) => { if (proposal.stage === BigInt(5)) { // Proposal is accepted enable(false); - console.log(`STOP_PROPOSAL_ID ${STOP_PROPOSAL_ID} proposal is accepted. Diabling staking.`); + console.log(`STOP_PROPOSAL_ID ${STOP_PROPOSAL_ID} proposal is accepted. Disabling staking.`); } else if (proposal.stage === BigInt(4)) { // Proposal is failed console.log(`STOP_PROPOSAL_ID ${STOP_PROPOSAL_ID} proposal is failed. No effect.`);