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.`);