Update backend/src/util/gate-by-proposal.js
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 39s Details

fix typo in console log
This commit is contained in:
Ladd Hoffman 2024-05-06 15:10:44 -05:00
parent efef9e8169
commit 4d8889e1af
1 changed files with 1 additions and 1 deletions

View File

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