From 69b02b55196eb8813937f25fc097fc7a434f0291 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Tue, 28 Jul 2015 07:52:12 -0700 Subject: [PATCH] Fixed documentation --- doc/masternode-budget.md | 2 +- src/masternode-budget.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/masternode-budget.md b/doc/masternode-budget.md index 1551f0f9a0..b4cf1261d9 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 db60c16053..96fbac20c5 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; }