mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Slight budgets refactor:
- cleaner blockchain-like rpc / moved logic to proposal class / cleaned help messages and redundant - refactored proposals a bit (more straightforward constructor, IsValid) (both parts inherit sanitization proposed/made by @crowning earlier)
This commit is contained in:
parent
f36e28ede0
commit
6b35e97ebc
@ -1265,18 +1265,6 @@ CBudgetProposal::CBudgetProposal()
|
|||||||
fValid = true;
|
fValid = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
CBudgetProposal::CBudgetProposal(std::string strProposalNameIn, std::string strURLIn, int nBlockStartIn, int nBlockEndIn, CScript addressIn, CAmount nAmountIn, uint256 nFeeTXHashIn)
|
|
||||||
{
|
|
||||||
strProposalName = strProposalNameIn;
|
|
||||||
strURL = strURLIn;
|
|
||||||
nBlockStart = nBlockStartIn;
|
|
||||||
nBlockEnd = nBlockEndIn;
|
|
||||||
address = addressIn;
|
|
||||||
nAmount = nAmountIn;
|
|
||||||
nFeeTXHash = nFeeTXHashIn;
|
|
||||||
fValid = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
CBudgetProposal::CBudgetProposal(const CBudgetProposal& other)
|
CBudgetProposal::CBudgetProposal(const CBudgetProposal& other)
|
||||||
{
|
{
|
||||||
strProposalName = other.strProposalName;
|
strProposalName = other.strProposalName;
|
||||||
@ -1291,6 +1279,23 @@ CBudgetProposal::CBudgetProposal(const CBudgetProposal& other)
|
|||||||
fValid = true;
|
fValid = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CBudgetProposal::CBudgetProposal(std::string strProposalNameIn, std::string strURLIn, int nPaymentCount, CScript addressIn, CAmount nAmountIn, int nBlockStartIn, uint256 nFeeTXHashIn)
|
||||||
|
{
|
||||||
|
strProposalName = strProposalNameIn;
|
||||||
|
strURL = strURLIn;
|
||||||
|
|
||||||
|
nBlockStart = nBlockStartIn;
|
||||||
|
|
||||||
|
int nPaymentsStart = nBlockStart - nBlockStart % GetBudgetPaymentCycleBlocks();
|
||||||
|
//calculate the end of the cycle for this vote, add half a cycle (vote will be deleted after that block)
|
||||||
|
nBlockEnd = nPaymentsStart + GetBudgetPaymentCycleBlocks() * nPaymentCount + GetBudgetPaymentCycleBlocks()/2;
|
||||||
|
|
||||||
|
address = addressIn;
|
||||||
|
nAmount = nAmountIn;
|
||||||
|
|
||||||
|
nFeeTXHash = nFeeTXHashIn;
|
||||||
|
}
|
||||||
|
|
||||||
bool CBudgetProposal::IsValid(std::string& strError, bool fCheckCollateral)
|
bool CBudgetProposal::IsValid(std::string& strError, bool fCheckCollateral)
|
||||||
{
|
{
|
||||||
if(GetNays() - GetYeas() > mnodeman.CountEnabled(MIN_BUDGET_PEER_PROTO_VERSION)/10){
|
if(GetNays() - GetYeas() > mnodeman.CountEnabled(MIN_BUDGET_PEER_PROTO_VERSION)/10){
|
||||||
@ -1303,18 +1308,52 @@ bool CBudgetProposal::IsValid(std::string& strError, bool fCheckCollateral)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CBlockIndex* pindexPrev = chainActive.Tip();
|
||||||
|
if(pindexPrev == NULL) {strError = "Tip is NULL"; return true;}
|
||||||
|
|
||||||
|
if(nBlockStart % GetBudgetPaymentCycleBlocks() != 0){
|
||||||
|
int nNext = pindexPrev->nHeight - pindexPrev->nHeight % GetBudgetPaymentCycleBlocks() + GetBudgetPaymentCycleBlocks();
|
||||||
|
strError = strprintf("Invalid block start - must be a budget cycle block. Next valid block: %d", nNext);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(nBlockEnd % GetBudgetPaymentCycleBlocks() != GetBudgetPaymentCycleBlocks()/2){
|
||||||
|
strError = "Invalid block end";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if(nBlockEnd < nBlockStart) {
|
if(nBlockEnd < nBlockStart) {
|
||||||
strError = "Invalid nBlockEnd";
|
strError = "Invalid block end - must be greater then block start.";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(nAmount < 1*COIN) {
|
if(nAmount < 1*COIN) {
|
||||||
strError = "Invalid nAmount";
|
strError = "Invalid proposal amount";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(strProposalName.size() > 20) {
|
||||||
|
strError = "Invalid proposal name, limit of 20 characters.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(strProposalName != SanitizeString(strProposalName)) {
|
||||||
|
strError = "Invalid proposal name, unsafe characters found.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(strURL.size() > 64) {
|
||||||
|
strError = "Invalid proposal url, limit of 64 characters.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(strURL != SanitizeString(strURL)) {
|
||||||
|
strError = "Invalid proposal url, unsafe characters found.";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(address == CScript()) {
|
if(address == CScript()) {
|
||||||
strError = "Invalid Payment Address";
|
strError = "Invalid proposal Payment Address";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1349,9 +1388,6 @@ bool CBudgetProposal::IsValid(std::string& strError, bool fCheckCollateral)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
CBlockIndex* pindexPrev = chainActive.Tip();
|
|
||||||
if(pindexPrev == NULL) {strError = "Tip is NULL"; return true;}
|
|
||||||
|
|
||||||
if(GetBlockEnd() < pindexPrev->nHeight - GetBudgetPaymentCycleBlocks()/2 ) return false;
|
if(GetBlockEnd() < pindexPrev->nHeight - GetBudgetPaymentCycleBlocks()/2 ) return false;
|
||||||
|
|
||||||
|
|
||||||
@ -1493,23 +1529,6 @@ int CBudgetProposal::GetRemainingPaymentCount()
|
|||||||
return (nPayments <= nTotal ? nPayments : nTotal);
|
return (nPayments <= nTotal ? nPayments : nTotal);
|
||||||
}
|
}
|
||||||
|
|
||||||
CBudgetProposalBroadcast::CBudgetProposalBroadcast(std::string strProposalNameIn, std::string strURLIn, int nPaymentCount, CScript addressIn, CAmount nAmountIn, int nBlockStartIn, uint256 nFeeTXHashIn)
|
|
||||||
{
|
|
||||||
strProposalName = strProposalNameIn;
|
|
||||||
strURL = strURLIn;
|
|
||||||
|
|
||||||
nBlockStart = nBlockStartIn;
|
|
||||||
|
|
||||||
int nCycleStart = nBlockStart - nBlockStart % GetBudgetPaymentCycleBlocks();
|
|
||||||
//calculate the end of the cycle for this vote, add half a cycle (vote will be deleted after that block)
|
|
||||||
nBlockEnd = nCycleStart + GetBudgetPaymentCycleBlocks() * nPaymentCount + GetBudgetPaymentCycleBlocks()/2;
|
|
||||||
|
|
||||||
address = addressIn;
|
|
||||||
nAmount = nAmountIn;
|
|
||||||
|
|
||||||
nFeeTXHash = nFeeTXHashIn;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CBudgetProposalBroadcast::Relay()
|
void CBudgetProposalBroadcast::Relay()
|
||||||
{
|
{
|
||||||
CInv inv(MSG_BUDGET_PROPOSAL, GetHash());
|
CInv inv(MSG_BUDGET_PROPOSAL, GetHash());
|
||||||
|
@ -415,7 +415,7 @@ public:
|
|||||||
|
|
||||||
CBudgetProposal();
|
CBudgetProposal();
|
||||||
CBudgetProposal(const CBudgetProposal& other);
|
CBudgetProposal(const CBudgetProposal& other);
|
||||||
CBudgetProposal(std::string strProposalNameIn, std::string strURLIn, int nBlockStartIn, int nBlockEndIn, CScript addressIn, CAmount nAmountIn, uint256 nFeeTXHashIn);
|
CBudgetProposal(std::string strProposalNameIn, std::string strURLIn, int nPaymentCount, CScript addressIn, CAmount nAmountIn, int nBlockStartIn, uint256 nFeeTXHashIn);
|
||||||
|
|
||||||
void Calculate();
|
void Calculate();
|
||||||
bool AddOrUpdateVote(CBudgetVote& vote, std::string& strError);
|
bool AddOrUpdateVote(CBudgetVote& vote, std::string& strError);
|
||||||
@ -492,7 +492,7 @@ public:
|
|||||||
CBudgetProposalBroadcast() : CBudgetProposal(){}
|
CBudgetProposalBroadcast() : CBudgetProposal(){}
|
||||||
CBudgetProposalBroadcast(const CBudgetProposal& other) : CBudgetProposal(other){}
|
CBudgetProposalBroadcast(const CBudgetProposal& other) : CBudgetProposal(other){}
|
||||||
CBudgetProposalBroadcast(const CBudgetProposalBroadcast& other) : CBudgetProposal(other){}
|
CBudgetProposalBroadcast(const CBudgetProposalBroadcast& other) : CBudgetProposal(other){}
|
||||||
CBudgetProposalBroadcast(std::string strProposalNameIn, std::string strURLIn, int nPaymentCount, CScript addressIn, CAmount nAmountIn, int nBlockStartIn, uint256 nFeeTXHashIn);
|
CBudgetProposalBroadcast(std::string strProposalNameIn, std::string strURLIn, int nPaymentCount, CScript addressIn, CAmount nAmountIn, int nBlockStartIn, uint256 nFeeTXHashIn) {}
|
||||||
|
|
||||||
void swap(CBudgetProposalBroadcast& first, CBudgetProposalBroadcast& second) // nothrow
|
void swap(CBudgetProposalBroadcast& first, CBudgetProposalBroadcast& second) // nothrow
|
||||||
{
|
{
|
||||||
|
@ -24,22 +24,24 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
strCommand = params[0].get_str();
|
strCommand = params[0].get_str();
|
||||||
|
|
||||||
if (fHelp ||
|
if (fHelp ||
|
||||||
(strCommand != "vote-many" && strCommand != "prepare" && strCommand != "submit" && strCommand != "vote" && strCommand != "getvotes" && strCommand != "getinfo" && strCommand != "show" && strCommand != "projection" && strCommand != "check" && strCommand != "nextblock"))
|
(strCommand != "vote-many" && strCommand != "prepare" && strCommand != "submit" &&
|
||||||
|
strCommand != "vote" && strCommand != "getvotes" && strCommand != "getproposal" && strCommand != "getproposalhash" &&
|
||||||
|
strCommand != "list" && strCommand != "projection" && strCommand != "check" && strCommand != "nextblock"))
|
||||||
throw runtime_error(
|
throw runtime_error(
|
||||||
"mnbudget \"command\"... ( \"passphrase\" )\n"
|
"mnbudget \"command\"...\n"
|
||||||
"Vote or show current budgets\n"
|
"Manage proposals\n"
|
||||||
"\nAvailable commands:\n"
|
"\nAvailable commands:\n"
|
||||||
" prepare - Prepare proposal for network by signing and creating tx\n"
|
" check - Scan proposals and remove invalid from proposals list\n"
|
||||||
" submit - Submit proposal for network\n"
|
" prepare - Prepare proposal by signing and creating tx\n"
|
||||||
" vote-many - Vote on a Dash initiative\n"
|
" submit - Submit proposal to network\n"
|
||||||
" vote-alias - Vote on a Dash initiative\n"
|
" getproposalhash - Get proposal hash(es) by proposal name\n"
|
||||||
" vote - Vote on a Dash initiative/budget\n"
|
" getproposal - Show proposal\n"
|
||||||
" getvotes - Show current masternode budgets\n"
|
" getvotes - Show detailed votes list for proposal\n"
|
||||||
" getinfo - Show current masternode budgets\n"
|
" list - List all proposals\n"
|
||||||
" show - Show all budgets\n"
|
" nextblock - Get info about next superblock for budget system\n"
|
||||||
" projection - Show the projection of which proposals will be paid the next cycle\n"
|
" projection - Show the projection of which proposals will be paid the next cycle\n"
|
||||||
" check - Scan proposals and remove invalid\n"
|
" vote - Vote on a proposal by single masternode (using dash.conf setup)\n"
|
||||||
" nextblock - Get next superblock for budget system\n"
|
" vote-many - Vote on a proposal by all masternodes (using masternode.conf setup)\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
if(strCommand == "nextblock")
|
if(strCommand == "nextblock")
|
||||||
@ -53,44 +55,26 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
if(strCommand == "prepare")
|
if(strCommand == "prepare")
|
||||||
{
|
{
|
||||||
|
if (params.size() != 7)
|
||||||
|
throw runtime_error("Correct usage is 'mnbudget prepare <proposal-name> <url> <payment-count> <block-start> <dash-address> <monthly-payment-dash>'");
|
||||||
|
|
||||||
int nBlockMin = 0;
|
int nBlockMin = 0;
|
||||||
CBlockIndex* pindexPrev = chainActive.Tip();
|
CBlockIndex* pindexPrev = chainActive.Tip();
|
||||||
|
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
||||||
mnEntries = masternodeConfig.getEntries();
|
mnEntries = masternodeConfig.getEntries();
|
||||||
|
|
||||||
if (params.size() != 7)
|
|
||||||
throw runtime_error("Correct usage is 'mnbudget prepare proposal-name url payment_count block_start dash_address monthly_payment_dash'");
|
|
||||||
|
|
||||||
std::string strProposalName = SanitizeString(params[1].get_str());
|
std::string strProposalName = SanitizeString(params[1].get_str());
|
||||||
if(strProposalName.size() > 20)
|
|
||||||
return "Invalid proposal name, limit of 20 characters.";
|
|
||||||
|
|
||||||
std::string strURL = SanitizeString(params[2].get_str());
|
std::string strURL = SanitizeString(params[2].get_str());
|
||||||
if(strURL.size() > 64)
|
|
||||||
return "Invalid url, limit of 64 characters.";
|
|
||||||
|
|
||||||
int nPaymentCount = params[3].get_int();
|
int nPaymentCount = params[3].get_int();
|
||||||
if(nPaymentCount < 1)
|
int nBlockStart = params[4].get_int();
|
||||||
return "Invalid payment count, must be more than zero.";
|
|
||||||
|
|
||||||
//set block min
|
//set block min
|
||||||
if(pindexPrev != NULL) nBlockMin = pindexPrev->nHeight - GetBudgetPaymentCycleBlocks() * (nPaymentCount + 1);
|
if(pindexPrev != NULL) nBlockMin = pindexPrev->nHeight;
|
||||||
|
|
||||||
int nBlockStart = params[4].get_int();
|
|
||||||
if(nBlockStart % GetBudgetPaymentCycleBlocks() != 0){
|
|
||||||
int nNext = pindexPrev->nHeight - pindexPrev->nHeight % GetBudgetPaymentCycleBlocks() + GetBudgetPaymentCycleBlocks();
|
|
||||||
return strprintf("Invalid block start - must be a budget cycle block. Next valid block: %d", nNext);
|
|
||||||
}
|
|
||||||
|
|
||||||
int nBlockEnd = nBlockStart + GetBudgetPaymentCycleBlocks() * nPaymentCount;
|
|
||||||
|
|
||||||
if(nBlockStart < nBlockMin)
|
if(nBlockStart < nBlockMin)
|
||||||
return "Invalid block start, must be more than current height.";
|
return "Invalid block start, must be more than current height.";
|
||||||
|
|
||||||
if(nBlockEnd < pindexPrev->nHeight)
|
|
||||||
return "Invalid ending block, starting block + (payment_cycle*payments) must be more than current height.";
|
|
||||||
|
|
||||||
CBitcoinAddress address(params[5].get_str());
|
CBitcoinAddress address(params[5].get_str());
|
||||||
if (!address.IsValid())
|
if (!address.IsValid())
|
||||||
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address");
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address");
|
||||||
@ -130,47 +114,30 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
if(strCommand == "submit")
|
if(strCommand == "submit")
|
||||||
{
|
{
|
||||||
|
if (params.size() != 8)
|
||||||
|
throw runtime_error("Correct usage is 'mnbudget submit <proposal-name> <url> <payment-count> <block-start> <dash-address> <monthly-payment-dash> <fee-tx>'");
|
||||||
|
|
||||||
|
if(!masternodeSync.IsBlockchainSynced()){
|
||||||
|
return "Must wait for client to sync with masternode network. Try again in a minute or so.";
|
||||||
|
}
|
||||||
|
|
||||||
int nBlockMin = 0;
|
int nBlockMin = 0;
|
||||||
CBlockIndex* pindexPrev = chainActive.Tip();
|
CBlockIndex* pindexPrev = chainActive.Tip();
|
||||||
|
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
||||||
mnEntries = masternodeConfig.getEntries();
|
mnEntries = masternodeConfig.getEntries();
|
||||||
|
|
||||||
if (params.size() != 8)
|
|
||||||
throw runtime_error("Correct usage is 'mnbudget submit proposal-name url payment_count block_start dash_address monthly_payment_dash fee_tx'");
|
|
||||||
|
|
||||||
// Check these inputs the same way we check the vote commands:
|
|
||||||
// **********************************************************
|
|
||||||
|
|
||||||
std::string strProposalName = SanitizeString(params[1].get_str());
|
std::string strProposalName = SanitizeString(params[1].get_str());
|
||||||
if(strProposalName.size() > 20)
|
|
||||||
return "Invalid proposal name, limit of 20 characters.";
|
|
||||||
|
|
||||||
std::string strURL = SanitizeString(params[2].get_str());
|
std::string strURL = SanitizeString(params[2].get_str());
|
||||||
if(strURL.size() > 64)
|
|
||||||
return "Invalid url, limit of 64 characters.";
|
|
||||||
|
|
||||||
int nPaymentCount = params[3].get_int();
|
int nPaymentCount = params[3].get_int();
|
||||||
if(nPaymentCount < 1)
|
int nBlockStart = params[4].get_int();
|
||||||
return "Invalid payment count, must be more than zero.";
|
|
||||||
|
|
||||||
//set block min
|
//set block min
|
||||||
if(pindexPrev != NULL) nBlockMin = pindexPrev->nHeight - GetBudgetPaymentCycleBlocks() * (nPaymentCount + 1);
|
if(pindexPrev != NULL) nBlockMin = pindexPrev->nHeight;
|
||||||
|
|
||||||
int nBlockStart = params[4].get_int();
|
|
||||||
if(nBlockStart % GetBudgetPaymentCycleBlocks() != 0){
|
|
||||||
int nNext = pindexPrev->nHeight - pindexPrev->nHeight % GetBudgetPaymentCycleBlocks() + GetBudgetPaymentCycleBlocks();
|
|
||||||
return strprintf("Invalid block start - must be a budget cycle block. Next valid block: %d", nNext);
|
|
||||||
}
|
|
||||||
|
|
||||||
int nBlockEnd = nBlockStart + (GetBudgetPaymentCycleBlocks()*nPaymentCount);
|
|
||||||
|
|
||||||
if(nBlockStart < nBlockMin)
|
if(nBlockStart < nBlockMin)
|
||||||
return "Invalid payment count, must be more than current height.";
|
return "Invalid payment count, must be more than current height.";
|
||||||
|
|
||||||
if(nBlockEnd < pindexPrev->nHeight)
|
|
||||||
return "Invalid ending block, starting block + (payment_cycle*payments) must be more than current height.";
|
|
||||||
|
|
||||||
CBitcoinAddress address(params[5].get_str());
|
CBitcoinAddress address(params[5].get_str());
|
||||||
if (!address.IsValid())
|
if (!address.IsValid())
|
||||||
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address");
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address");
|
||||||
@ -178,25 +145,22 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
// Parse Dash address
|
// Parse Dash address
|
||||||
CScript scriptPubKey = GetScriptForDestination(address.Get());
|
CScript scriptPubKey = GetScriptForDestination(address.Get());
|
||||||
CAmount nAmount = AmountFromValue(params[6]);
|
CAmount nAmount = AmountFromValue(params[6]);
|
||||||
uint256 hash = ParseHashV(params[7], "parameter 1");
|
uint256 hash = ParseHashV(params[7], "Proposal hash");
|
||||||
|
|
||||||
//create the proposal incase we're the first to make it
|
//create the proposal incase we're the first to make it
|
||||||
CBudgetProposalBroadcast budgetProposalBroadcast(strProposalName, strURL, nPaymentCount, scriptPubKey, nAmount, nBlockStart, hash);
|
CBudgetProposalBroadcast budgetProposalBroadcast(strProposalName, strURL, nPaymentCount, scriptPubKey, nAmount, nBlockStart, hash);
|
||||||
|
|
||||||
std::string strError = "";
|
std::string strError = "";
|
||||||
|
|
||||||
|
if(!budgetProposalBroadcast.IsValid(strError)){
|
||||||
|
return "Proposal is not valid - " + budgetProposalBroadcast.GetHash().ToString() + " - " + strError;
|
||||||
|
}
|
||||||
|
|
||||||
int nConf = 0;
|
int nConf = 0;
|
||||||
if(!IsBudgetCollateralValid(hash, budgetProposalBroadcast.GetHash(), strError, budgetProposalBroadcast.nTime, nConf)){
|
if(!IsBudgetCollateralValid(hash, budgetProposalBroadcast.GetHash(), strError, budgetProposalBroadcast.nTime, nConf)){
|
||||||
return "Proposal FeeTX is not valid - " + hash.ToString() + " - " + strError;
|
return "Proposal FeeTX is not valid - " + hash.ToString() + " - " + strError;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!masternodeSync.IsBlockchainSynced()){
|
|
||||||
return "Must wait for client to sync with masternode network. Try again in a minute or so.";
|
|
||||||
}
|
|
||||||
|
|
||||||
// if(!budgetProposalBroadcast.IsValid(strError)){
|
|
||||||
// return "Proposal is not valid - " + budgetProposalBroadcast.GetHash().ToString() + " - " + strError;
|
|
||||||
// }
|
|
||||||
|
|
||||||
budget.mapSeenMasternodeBudgetProposals.insert(make_pair(budgetProposalBroadcast.GetHash(), budgetProposalBroadcast));
|
budget.mapSeenMasternodeBudgetProposals.insert(make_pair(budgetProposalBroadcast.GetHash(), budgetProposalBroadcast));
|
||||||
budgetProposalBroadcast.Relay();
|
budgetProposalBroadcast.Relay();
|
||||||
budget.AddProposal(budgetProposalBroadcast);
|
budget.AddProposal(budgetProposalBroadcast);
|
||||||
@ -207,14 +171,14 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
if(strCommand == "vote-many")
|
if(strCommand == "vote-many")
|
||||||
{
|
{
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
if(params.size() != 3)
|
||||||
mnEntries = masternodeConfig.getEntries();
|
throw runtime_error("Correct usage is 'mnbudget vote-many <proposal-hash> <yes|no>'");
|
||||||
|
|
||||||
if (params.size() != 3)
|
uint256 hash;
|
||||||
throw runtime_error("Correct usage is 'mnbudget vote-many proposal-hash yes|no'");
|
std::string strVote;
|
||||||
|
|
||||||
uint256 hash = ParseHashV(params[1], "parameter 1");
|
hash = ParseHashV(params[1], "Proposal hash");
|
||||||
std::string strVote = params[2].get_str();
|
strVote = params[2].get_str();
|
||||||
|
|
||||||
if(strVote != "yes" && strVote != "no") return "You can only vote 'yes' or 'no'";
|
if(strVote != "yes" && strVote != "no") return "You can only vote 'yes' or 'no'";
|
||||||
int nVote = VOTE_ABSTAIN;
|
int nVote = VOTE_ABSTAIN;
|
||||||
@ -224,6 +188,9 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
int success = 0;
|
int success = 0;
|
||||||
int failed = 0;
|
int failed = 0;
|
||||||
|
|
||||||
|
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
||||||
|
mnEntries = masternodeConfig.getEntries();
|
||||||
|
|
||||||
Object resultsObj;
|
Object resultsObj;
|
||||||
|
|
||||||
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
|
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
|
||||||
@ -289,13 +256,10 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
if(strCommand == "vote")
|
if(strCommand == "vote")
|
||||||
{
|
{
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
|
||||||
mnEntries = masternodeConfig.getEntries();
|
|
||||||
|
|
||||||
if (params.size() != 3)
|
if (params.size() != 3)
|
||||||
throw runtime_error("Correct usage is 'mnbudget vote proposal-hash yes|no'");
|
throw runtime_error("Correct usage is 'mnbudget vote <proposal-hash> <yes|no>'");
|
||||||
|
|
||||||
uint256 hash = ParseHashV(params[1], "parameter 1");
|
uint256 hash = ParseHashV(params[1], "Proposal hash");
|
||||||
std::string strVote = params[2].get_str();
|
std::string strVote = params[2].get_str();
|
||||||
|
|
||||||
if(strVote != "yes" && strVote != "no") return "You can only vote 'yes' or 'no'";
|
if(strVote != "yes" && strVote != "no") return "You can only vote 'yes' or 'no'";
|
||||||
@ -360,7 +324,6 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
bObj.push_back(Pair("TotalPayment", ValueFromAmount(pbudgetProposal->GetAmount()*pbudgetProposal->GetTotalPaymentCount())));
|
bObj.push_back(Pair("TotalPayment", ValueFromAmount(pbudgetProposal->GetAmount()*pbudgetProposal->GetTotalPaymentCount())));
|
||||||
bObj.push_back(Pair("MonthlyPayment", ValueFromAmount(pbudgetProposal->GetAmount())));
|
bObj.push_back(Pair("MonthlyPayment", ValueFromAmount(pbudgetProposal->GetAmount())));
|
||||||
bObj.push_back(Pair("Alloted", ValueFromAmount(pbudgetProposal->GetAllotted())));
|
bObj.push_back(Pair("Alloted", ValueFromAmount(pbudgetProposal->GetAllotted())));
|
||||||
bObj.push_back(Pair("TotalBudgetAlloted", ValueFromAmount(nTotalAllotted)));
|
|
||||||
|
|
||||||
std::string strError = "";
|
std::string strError = "";
|
||||||
bObj.push_back(Pair("IsValid", pbudgetProposal->IsValid(strError)));
|
bObj.push_back(Pair("IsValid", pbudgetProposal->IsValid(strError)));
|
||||||
@ -369,15 +332,19 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
resultObj.push_back(Pair(pbudgetProposal->GetName(), bObj));
|
resultObj.push_back(Pair(pbudgetProposal->GetName(), bObj));
|
||||||
}
|
}
|
||||||
|
resultObj.push_back(Pair("TotalBudgetAlloted", ValueFromAmount(nTotalAllotted)));
|
||||||
|
|
||||||
return resultObj;
|
return resultObj;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strCommand == "show")
|
if(strCommand == "list")
|
||||||
{
|
{
|
||||||
|
if (params.size() > 2)
|
||||||
|
throw runtime_error("Correct usage is 'mnbudget list [valid]'");
|
||||||
|
|
||||||
std::string strShow = "valid";
|
std::string strShow = "valid";
|
||||||
std::string strProposalName = "";
|
if (params.size() == 2) strShow = params[1].get_str();
|
||||||
|
|
||||||
Object resultObj;
|
Object resultObj;
|
||||||
int64_t nTotalAllotted = 0;
|
int64_t nTotalAllotted = 0;
|
||||||
|
|
||||||
@ -386,12 +353,6 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
{
|
{
|
||||||
if(strShow == "valid" && !pbudgetProposal->fValid) continue;
|
if(strShow == "valid" && !pbudgetProposal->fValid) continue;
|
||||||
|
|
||||||
// if a proposal name is submitted only show that one
|
|
||||||
if (params.size() == 2){
|
|
||||||
strProposalName = SanitizeString(params[1].get_str());
|
|
||||||
if (strProposalName != pbudgetProposal->GetName()) continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
nTotalAllotted += pbudgetProposal->GetAllotted();
|
nTotalAllotted += pbudgetProposal->GetAllotted();
|
||||||
|
|
||||||
CTxDestination address1;
|
CTxDestination address1;
|
||||||
@ -428,16 +389,62 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
return resultObj;
|
return resultObj;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strCommand == "getinfo")
|
if(strCommand == "getproposalhash")
|
||||||
{
|
{
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw runtime_error("Correct usage is 'mnbudget getinfo profilename'");
|
throw runtime_error("Correct usage is 'mnbudget getproposalhash <proposal-name>'");
|
||||||
|
|
||||||
std::string strProposalName = SanitizeString(params[1].get_str());
|
std::string strProposalName = SanitizeString(params[1].get_str());
|
||||||
|
|
||||||
CBudgetProposal* pbudgetProposal = budget.FindProposal(strProposalName);
|
CBudgetProposal* pbudgetProposal = budget.FindProposal(strProposalName);
|
||||||
|
|
||||||
if(pbudgetProposal == NULL) return "Unknown proposal name";
|
if(pbudgetProposal == NULL) return "Unknown proposal";
|
||||||
|
|
||||||
|
Object resultObj;
|
||||||
|
|
||||||
|
std::vector<CBudgetProposal*> winningProps = budget.GetAllProposals();
|
||||||
|
BOOST_FOREACH(CBudgetProposal* pbudgetProposal, winningProps)
|
||||||
|
{
|
||||||
|
if(pbudgetProposal->GetName() != strProposalName) continue;
|
||||||
|
if(!pbudgetProposal->fValid) continue;
|
||||||
|
|
||||||
|
CTxDestination address1;
|
||||||
|
ExtractDestination(pbudgetProposal->GetPayee(), address1);
|
||||||
|
CBitcoinAddress address2(address1);
|
||||||
|
|
||||||
|
Object bObj;
|
||||||
|
bObj.push_back(Pair("Hash", pbudgetProposal->GetHash().ToString()));
|
||||||
|
bObj.push_back(Pair("PaymentAddress", address2.ToString()));
|
||||||
|
bObj.push_back(Pair("Ratio", pbudgetProposal->GetRatio()));
|
||||||
|
bObj.push_back(Pair("Yeas", (int64_t)pbudgetProposal->GetYeas()));
|
||||||
|
bObj.push_back(Pair("Nays", (int64_t)pbudgetProposal->GetNays()));
|
||||||
|
bObj.push_back(Pair("Abstains", (int64_t)pbudgetProposal->GetAbstains()));
|
||||||
|
|
||||||
|
bObj.push_back(Pair("IsEstablished", pbudgetProposal->IsEstablished()));
|
||||||
|
|
||||||
|
std::string strError = "";
|
||||||
|
bObj.push_back(Pair("IsValid", pbudgetProposal->IsValid(strError)));
|
||||||
|
bObj.push_back(Pair("IsValidReason", strError.c_str()));
|
||||||
|
bObj.push_back(Pair("fValid", pbudgetProposal->fValid));
|
||||||
|
|
||||||
|
resultObj.push_back(Pair(pbudgetProposal->GetHash().ToString(), bObj));
|
||||||
|
}
|
||||||
|
|
||||||
|
if(resultObj.size() > 1) return resultObj;
|
||||||
|
|
||||||
|
return pbudgetProposal->GetHash().ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(strCommand == "getproposal")
|
||||||
|
{
|
||||||
|
if (params.size() != 2)
|
||||||
|
throw runtime_error("Correct usage is 'mnbudget getproposal <proposal-hash>'");
|
||||||
|
|
||||||
|
uint256 hash = ParseHashV(params[1], "Proposal hash");
|
||||||
|
|
||||||
|
CBudgetProposal* pbudgetProposal = budget.FindProposal(hash);
|
||||||
|
|
||||||
|
if(pbudgetProposal == NULL) return "Unknown proposal";
|
||||||
|
|
||||||
CTxDestination address1;
|
CTxDestination address1;
|
||||||
ExtractDestination(pbudgetProposal->GetPayee(), address1);
|
ExtractDestination(pbudgetProposal->GetPayee(), address1);
|
||||||
@ -472,15 +479,15 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
if(strCommand == "getvotes")
|
if(strCommand == "getvotes")
|
||||||
{
|
{
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw runtime_error("Correct usage is 'mnbudget getvotes profilename'");
|
throw runtime_error("Correct usage is 'mnbudget getvotes <proposal-hash>'");
|
||||||
|
|
||||||
std::string strProposalName = SanitizeString(params[1].get_str());
|
uint256 hash = ParseHashV(params[1], "Proposal hash");
|
||||||
|
|
||||||
Object obj;
|
Object obj;
|
||||||
|
|
||||||
CBudgetProposal* pbudgetProposal = budget.FindProposal(strProposalName);
|
CBudgetProposal* pbudgetProposal = budget.FindProposal(hash);
|
||||||
|
|
||||||
if(pbudgetProposal == NULL) return "Unknown proposal name";
|
if(pbudgetProposal == NULL) return "Unknown proposal";
|
||||||
|
|
||||||
std::map<uint256, CBudgetVote>::iterator it = pbudgetProposal->mapVotes.begin();
|
std::map<uint256, CBudgetVote>::iterator it = pbudgetProposal->mapVotes.begin();
|
||||||
while(it != pbudgetProposal->mapVotes.end()){
|
while(it != pbudgetProposal->mapVotes.end()){
|
||||||
@ -517,24 +524,21 @@ Value mnfinalbudget(const Array& params, bool fHelp)
|
|||||||
strCommand = params[0].get_str();
|
strCommand = params[0].get_str();
|
||||||
|
|
||||||
if (fHelp ||
|
if (fHelp ||
|
||||||
(strCommand != "suggest" && strCommand != "vote-many" && strCommand != "vote" && strCommand != "show" && strCommand != "getvotes"))
|
(strCommand != "vote-many" && strCommand != "vote" && strCommand != "list" && strCommand != "getvotes"))
|
||||||
throw runtime_error(
|
throw runtime_error(
|
||||||
"mnfinalbudget \"command\"... ( \"passphrase\" )\n"
|
"mnfinalbudget \"command\"...\n"
|
||||||
"Vote or show current budgets\n"
|
"Manage current budgets\n"
|
||||||
"\nAvailable commands:\n"
|
"\nAvailable commands:\n"
|
||||||
" vote-many - Vote on a finalized budget\n"
|
" list - List existing finalized budgets\n"
|
||||||
" vote - Vote on a finalized budget\n"
|
" vote - Vote on a finalized budget by single masternode (using dash.conf setup)\n"
|
||||||
" show - Show existing finalized budgets\n"
|
" vote-many - Vote on a finalized budget by all masternodes (using masternode.conf setup)\n"
|
||||||
" getvotes - Get vote information for each finalized budget\n"
|
" getvotes - Get vote information for each finalized budget\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
if(strCommand == "vote-many")
|
if(strCommand == "vote-many")
|
||||||
{
|
{
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
|
||||||
mnEntries = masternodeConfig.getEntries();
|
|
||||||
|
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw runtime_error("Correct usage is 'mnfinalbudget vote-many BUDGET_HASH'");
|
throw runtime_error("Correct usage is 'mnfinalbudget vote-many <budget-hash>'");
|
||||||
|
|
||||||
std::string strHash = params[1].get_str();
|
std::string strHash = params[1].get_str();
|
||||||
uint256 hash(strHash);
|
uint256 hash(strHash);
|
||||||
@ -542,6 +546,9 @@ Value mnfinalbudget(const Array& params, bool fHelp)
|
|||||||
int success = 0;
|
int success = 0;
|
||||||
int failed = 0;
|
int failed = 0;
|
||||||
|
|
||||||
|
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
||||||
|
mnEntries = masternodeConfig.getEntries();
|
||||||
|
|
||||||
Object resultsObj;
|
Object resultsObj;
|
||||||
|
|
||||||
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
|
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
|
||||||
@ -607,11 +614,8 @@ Value mnfinalbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
if(strCommand == "vote")
|
if(strCommand == "vote")
|
||||||
{
|
{
|
||||||
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
|
|
||||||
mnEntries = masternodeConfig.getEntries();
|
|
||||||
|
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw runtime_error("Correct usage is 'mnfinalbudget vote BUDGET_HASH'");
|
throw runtime_error("Correct usage is 'mnfinalbudget vote <budget-hash>'");
|
||||||
|
|
||||||
std::string strHash = params[1].get_str();
|
std::string strHash = params[1].get_str();
|
||||||
uint256 hash(strHash);
|
uint256 hash(strHash);
|
||||||
@ -645,7 +649,7 @@ Value mnfinalbudget(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strCommand == "show")
|
if(strCommand == "list")
|
||||||
{
|
{
|
||||||
Object resultObj;
|
Object resultObj;
|
||||||
|
|
||||||
@ -675,7 +679,7 @@ Value mnfinalbudget(const Array& params, bool fHelp)
|
|||||||
if(strCommand == "getvotes")
|
if(strCommand == "getvotes")
|
||||||
{
|
{
|
||||||
if (params.size() != 2)
|
if (params.size() != 2)
|
||||||
throw runtime_error("Correct usage is 'mnbudget getvotes budget-hash'");
|
throw runtime_error("Correct usage is 'mnbudget getvotes <budget-hash>'");
|
||||||
|
|
||||||
std::string strHash = params[1].get_str();
|
std::string strHash = params[1].get_str();
|
||||||
uint256 hash(strHash);
|
uint256 hash(strHash);
|
||||||
|
Loading…
Reference in New Issue
Block a user