diff --git a/doc/masternode-budget.md b/doc/masternode-budget.md index 1551f0f9a..b4cf1261d 100644 --- a/doc/masternode-budget.md +++ b/doc/masternode-budget.md @@ -60,7 +60,7 @@ If everything looks correct, you can ask for votes from other masternodes. To vo 4. Make it inte the budget -After you get enough votes, execute "mnbudget projection" to see if you made it into the budget. Projection will show you, if you the budget was finalized at this moment which proposals would be in it. +After you get enough votes, execute "mnbudget projection" to see if you made it into the budget. If you the budget was finalized at this moment which proposals would be in it. Note: Proposals must be active at least 1 day on the network and receive 10% of the masternode network in yes votes in order to qualify (E.g. if there is 2500 masternodes, you will need 250 yes votes.) mnbudget projection: { diff --git a/src/masternode-budget.h b/src/masternode-budget.h index db60c1605..96fbac20c 100644 --- a/src/masternode-budget.h +++ b/src/masternode-budget.h @@ -383,7 +383,7 @@ public: if(Params().NetworkID() == CBaseChainParams::MAIN) return (nTime < GetTime() - (60*60*24)); //for testing purposes - 4 hours - return (nTime < GetTime() - (60*60*4)); + return (nTime < GetTime() - (60*20)); } std::string GetName() {return strProposalName; }