mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
fixed most of the budget functions
This commit is contained in:
parent
969826c249
commit
b02d5260fd
@ -308,31 +308,31 @@ bool CBudgetVote::SignatureValid()
|
||||
|
||||
void CBudgetManager::AddOrUpdateProposal(CBudgetVote& vote)
|
||||
{
|
||||
// LOCK(cs);
|
||||
LOCK(cs);
|
||||
|
||||
// uint256 hash = GetBudgetProposalHash(vote.strProposalName);
|
||||
uint256 hash = GetBudgetProposalHash(vote.strProposalName);
|
||||
|
||||
// if(!mapProposals.count(hash)){
|
||||
// CBudgetProposal prop(vote.strProposalName);
|
||||
// mapProposals.insert(make_pair(hash, prop));
|
||||
// return;
|
||||
// }
|
||||
if(!mapProposals.count(hash)){
|
||||
CBudgetProposal prop(vote.strProposalName);
|
||||
//mapProposals.insert(make_pair(hash, prop));
|
||||
return;
|
||||
}
|
||||
|
||||
// mapProposals[hash].AddOrUpdateVote(vote);
|
||||
mapProposals[hash].AddOrUpdateVote(vote);
|
||||
}
|
||||
|
||||
void CBudgetProposal::AddOrUpdateVote(CBudgetVote& vote)
|
||||
{
|
||||
// LOCK(cs);
|
||||
LOCK(cs);
|
||||
|
||||
// uint256 hash = vote.vin.prevout.GetHash();
|
||||
uint256 hash = vote.vin.prevout.GetHash();
|
||||
|
||||
// if(!mapProposals.count(hash)){
|
||||
// mapProposals.insert(make_pair(hash, vote));
|
||||
// return;
|
||||
// }
|
||||
if(!mapVotes.count(hash)){
|
||||
mapVotes.insert(make_pair(hash, vote));
|
||||
return;
|
||||
}
|
||||
|
||||
// vote[hash] = vote;
|
||||
mapVotes[hash] = vote;
|
||||
}
|
||||
|
||||
inline void CBudgetManager::NewBlock()
|
||||
@ -345,11 +345,11 @@ inline void CBudgetManager::NewBlock()
|
||||
|
||||
CBudgetProposal *CBudgetManager::Find(const std::string &strProposalName)
|
||||
{
|
||||
// uint256 hash = GetBudgetProposalHash(vote.strProposalName);
|
||||
uint256 hash = GetBudgetProposalHash(strProposalName);
|
||||
|
||||
// if(mapProposals.count(hash)){
|
||||
// return &mapProposals[hash];
|
||||
// }
|
||||
if(mapProposals.count(hash)){
|
||||
return &mapProposals[hash];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
@ -359,6 +359,11 @@ CBudgetProposal::CBudgetProposal()
|
||||
strProposalName = "";
|
||||
}
|
||||
|
||||
CBudgetProposal::CBudgetProposal(const CBudgetProposal& other)
|
||||
{
|
||||
strProposalName = other.strProposalName;
|
||||
}
|
||||
|
||||
CBudgetProposal::CBudgetProposal(std::string strProposalNameIn)
|
||||
{
|
||||
strProposalName = strProposalNameIn;
|
||||
@ -371,38 +376,43 @@ std::string CBudgetProposal::GetName()
|
||||
|
||||
int CBudgetProposal::GetBlockStart()
|
||||
{
|
||||
/*std::map<int, int> mapList;
|
||||
std::map<int, int> mapList;
|
||||
|
||||
map<uint256, CBudgetVote>::iterator it;
|
||||
for(it=mapVotes.begin();it<mapVotes.end();it++){
|
||||
if ((*it)->second.mapVotes.nVote != VOTE_YEA) continue;
|
||||
|
||||
if(mapList.count((*it).nBlockStart)){
|
||||
mapList[(*it).nBlockStart]++;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
|
||||
while(it != mapVotes.end()) {
|
||||
if ((*it).second.nVote != VOTE_YES) continue;
|
||||
|
||||
if(mapList.count((*it).second.nBlockStart)){
|
||||
mapList[(*it).second.nBlockStart]++;
|
||||
} else {
|
||||
mapList[(*it)].insert(make_pair<(*it).nBlockStart, 1>);
|
||||
mapList[(*it).second.nBlockStart] = 1;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
|
||||
//sort(mapList.begin(), mapList.end());
|
||||
// return myMap.begin()->second;
|
||||
//return myMap.begin()->second;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int CBudgetProposal::GetBlockEnd()
|
||||
{
|
||||
std::map<int, int> mapList;
|
||||
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++){
|
||||
// if ((*it)->second.nVote != VOTE_YEA) continue;
|
||||
while(it != mapVotes.end()) {
|
||||
if ((*it).second.nVote != VOTE_YES) continue;
|
||||
|
||||
// if(mapList.count((*it).nBlockEnd)){
|
||||
// mapList[(*it).nBlockEnd]++;
|
||||
// } else {
|
||||
// mapList[(*it).nBlockEnd] = 1;
|
||||
// }
|
||||
// }
|
||||
if(mapList.count((*it).second.nBlockEnd)){
|
||||
mapList[(*it).second.nBlockEnd]++;
|
||||
} else {
|
||||
mapList[(*it).second.nBlockEnd] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
// sort(mapList.begin(), mapList.end());
|
||||
// return myMap.begin()->first;
|
||||
@ -413,44 +423,47 @@ int64_t CBudgetProposal::GetAmount()
|
||||
{
|
||||
std::map<int64_t, int> mapList;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++){
|
||||
// if ((*it)->second.nVote != VOTE_YEA) continue;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
|
||||
// if(mapList.count((*it).nAmount)){
|
||||
// mapList[(*it).nAmount]++;
|
||||
// } else {
|
||||
// mapList[(*it).nAmount] = 1;
|
||||
// }
|
||||
// }
|
||||
while(it != mapVotes.end()) {
|
||||
if ((*it).second.nVote != VOTE_YES) continue;
|
||||
|
||||
if(mapList.count((*it).second.nAmount)){
|
||||
mapList[(*it).second.nAmount]++;
|
||||
} else {
|
||||
mapList[(*it).second.nAmount] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
// sort(mapList.begin(), mapList.end());
|
||||
// return myMap.begin()->first;
|
||||
return 0;
|
||||
}
|
||||
|
||||
std::string CBudgetProposal::GetPaymentAddress()
|
||||
CScript CBudgetProposal::GetPayee()
|
||||
{
|
||||
std::map<std::string, int> mapList;
|
||||
std::map<CScript, int> mapList;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=prop->mapVotes.begin();it<prop->mapVotes.end();it++){
|
||||
// if ((*it)->second.nVote != VOTE_YEA) continue;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
|
||||
// CTxDestination address1;
|
||||
// ExtractDestination((*it)->second.payee, address1);
|
||||
// CBitcoinAddress address2(address1);
|
||||
while(it != mapVotes.end()) {
|
||||
if ((*it).second.nVote != VOTE_YES) continue;
|
||||
|
||||
// if(mapList.count(address2){
|
||||
// mapList[address2]++;
|
||||
// } else {
|
||||
// mapList[address2] = 1;
|
||||
// }
|
||||
// }
|
||||
CTxDestination address1;
|
||||
ExtractDestination((*it).second.address, address1);
|
||||
CBitcoinAddress address2(address1);
|
||||
|
||||
if(mapList.count((*it).second.address)){
|
||||
mapList[(*it).second.address]++;
|
||||
} else {
|
||||
mapList[(*it).second.address] = 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// sort(mapList.begin(), mapList.end());
|
||||
// return myMap.begin()->first;
|
||||
return 0;
|
||||
return CScript();
|
||||
}
|
||||
|
||||
double CBudgetProposal::GetRatio()
|
||||
@ -458,11 +471,12 @@ double CBudgetProposal::GetRatio()
|
||||
int yeas = 0;
|
||||
int nays = 0;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++){
|
||||
// if ((*it)->second.prop->mapVotes.nVote != VOTE_YEA) yeas++;
|
||||
// if ((*it)->second.nVote != VOTE_NAY) nays++;
|
||||
// }
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
|
||||
while(it != mapVotes.end()) {
|
||||
if ((*it).second.nVote == VOTE_YES) yeas++;
|
||||
if ((*it).second.nVote == VOTE_NO) nays++;
|
||||
}
|
||||
|
||||
return ((double)yeas / (double)yeas+nays);
|
||||
}
|
||||
@ -471,9 +485,9 @@ int CBudgetProposal::GetYeas()
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++)
|
||||
// if ((*it)->second.mapVotes.nVote != VOTE_YEA) ret++;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
while(it != mapVotes.end())
|
||||
if ((*it).second.nVote == VOTE_YES) ret++;
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -482,9 +496,9 @@ int CBudgetProposal::GetNays()
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++)
|
||||
// if ((*it)->second.nVote != VOTE_NAY) ret++;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
while(it != mapVotes.end())
|
||||
if ((*it).second.nVote == VOTE_NO) ret++;
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -493,9 +507,9 @@ int CBudgetProposal::GetAbstains()
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++)
|
||||
// if ((*it)->second.mapVotes.nVote != VOTE_ABSTAIN) ret++;
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
while(it != mapVotes.end())
|
||||
if ((*it).second.nVote == VOTE_ABSTAIN) ret++;
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -511,28 +525,6 @@ bool CBudgetManager::IsBudgetPaymentBlock(int nHeight)
|
||||
return false;
|
||||
}
|
||||
|
||||
void CBudgetManager::FillBlockTx(CMutableTransaction& txNew, int& payments)
|
||||
{
|
||||
/* std::vector<CBudgetProposal*> budget = GetBudget();
|
||||
|
||||
LogPrintf("Masternode Budget payment to");
|
||||
|
||||
BOOST_FOREACH(CBudgetProposal* prop, budget){
|
||||
payments++;
|
||||
txNew.vout.resize(payments);
|
||||
|
||||
txNew.vout[payments-1].scriptPubKey = prop.GetPayee();
|
||||
txNew.vout[payments-1].nValue = prop.GetAmount();
|
||||
|
||||
CTxDestination address1;
|
||||
ExtractDestination(pblock->payee, address1);
|
||||
CBitcoinAddress address2(address1);
|
||||
|
||||
LogPrintf(" (%s|%d)", address2.ToString().c_str(), prop.GetAmount());
|
||||
}
|
||||
LogPrintf("\n");*/
|
||||
}
|
||||
|
||||
int64_t CBudgetManager::GetTotalBudget()
|
||||
{
|
||||
if(chainActive.Tip() == NULL) return 0;
|
||||
@ -541,40 +533,41 @@ int64_t CBudgetManager::GetTotalBudget()
|
||||
return (GetBlockValue(pindex->pprev->nBits, pindex->pprev->nHeight, 0)/100)*15;
|
||||
}
|
||||
|
||||
//Need to review this function
|
||||
std::vector<CBudgetProposal*> CBudgetManager::GetBudget()
|
||||
{
|
||||
/* std::map<uint256, int> mapList;
|
||||
std::map<uint256, int> mapList;
|
||||
|
||||
map<uint256, CBudgetProposal>::iterator it;
|
||||
for(it=prop->mapProposals.begin();it<prop->mapProposals.end();it++){
|
||||
uint256 hash = GetBudgetProposalHash((*it)->second.strProposalName);
|
||||
if(!mapList.count(hash)){
|
||||
mapList[hash] = (*it)->second.GetYeas();
|
||||
}
|
||||
/* std::map<uint256, CBudgetProposal>::iterator it = mapProposals.begin();
|
||||
while(it != mapProposals.end())
|
||||
uint256 hash = GetBudgetProposalHash((*it).second.strProposalName);
|
||||
mapList[hash] = (*it).second.GetYeas();
|
||||
}
|
||||
|
||||
//sort by yeas
|
||||
sort(mapList.begin(), mapList.end());*/
|
||||
sort(mapList.begin(), mapList.end());
|
||||
|
||||
*/
|
||||
std::vector<CBudgetProposal*> ret;
|
||||
|
||||
/* int64_t nBudgetAllocated = 0;
|
||||
/*
|
||||
int64_t nBudgetAllocated = 0;
|
||||
int64_t nTotalBudget = GetTotalBudget();
|
||||
|
||||
map<uint256, CBudgetProposal>::iterator it;
|
||||
for(it=prop->mapProposals.begin();it<prop->mapProposals.end();it++){
|
||||
std::map<uint256, CBudgetProposal>::iterator it = mapProposals.begin();
|
||||
while(it != mapProposals.end())
|
||||
{
|
||||
if(nTotalBudget == nBudgetAllocated){
|
||||
(*it).SetAllotted(0);
|
||||
} else if((*it).GetAmount() + nBudgetAllocated <= nTotalBudget()) {
|
||||
(*it).SetAllotted((*it).GetAmount());
|
||||
nBudgetAllocated += (*it).GetAmount();
|
||||
(*it).second.SetAllotted(0);
|
||||
} else if((*it).second.GetAmount() + nBudgetAllocated <= nTotalBudget()) {
|
||||
(*it).second..SetAllotted((*it).GetAmount());
|
||||
nBudgetAllocated += (*it).second.GetAmount();
|
||||
} else {
|
||||
//couldn't pay for the entire budget, so it'll be partially paid.
|
||||
(*it).SetAllotted(nTotalBudget - nBudgetAllocated);
|
||||
(*it).second.SetAllotted(nTotalBudget - nBudgetAllocated);
|
||||
nBudgetAllocated = nTotalBudget;
|
||||
}
|
||||
|
||||
ret.insert(make_pair((*it).strProposalName, &(*it)))
|
||||
ret.insert(make_pair((*it).second.strProposalName, &(*it)))
|
||||
}*/
|
||||
return ret;
|
||||
}
|
||||
@ -582,16 +575,15 @@ std::vector<CBudgetProposal*> CBudgetManager::GetBudget()
|
||||
|
||||
void CBudgetManager::Sync(CNode* node)
|
||||
{
|
||||
// map<uint256, CBudgetProposal>::iterator it;
|
||||
// for(it=prop->mapProposals.begin();it<prop->mapProposals.end();it++){
|
||||
// (*it)->second.Sync(node);
|
||||
// }
|
||||
std::map<uint256, CBudgetProposal>::iterator it = mapProposals.begin();
|
||||
while(it != mapProposals.end())
|
||||
(*it).second.Sync(node);
|
||||
|
||||
}
|
||||
|
||||
void CBudgetProposal::Sync(CNode* node)
|
||||
{
|
||||
// map<uint256, CBudgetVote>::iterator it;
|
||||
// for(it=mapVotes.begin();it<mapVotes.end();it++){
|
||||
// node->PushMessage("mvote", mapVotes[(*it)->first]);
|
||||
// }
|
||||
std::map<uint256, CBudgetVote>::iterator it = mapVotes.begin();
|
||||
while(it != mapVotes.end())
|
||||
node->PushMessage("mvote", (*it).second);
|
||||
}
|
@ -28,7 +28,7 @@ class CBudgetVote;
|
||||
extern CBudgetManager budget;
|
||||
|
||||
void DumpBudgets();
|
||||
|
||||
uint256 GetBudgetProposalHash(std::string strProposalName);
|
||||
|
||||
/** Save Budget Manager (budget.dat)
|
||||
*/
|
||||
@ -78,13 +78,12 @@ public:
|
||||
CBudgetProposal *Find(const std::string &strProposalName);
|
||||
inline void NewBlock();
|
||||
std::pair<std::string, std::string> GetVotes(std::string strProposalName);
|
||||
uint256 GetBudgetProposalHash(std::string strProposalName);
|
||||
|
||||
void CleanUp();
|
||||
|
||||
int64_t GetTotalBudget();
|
||||
std::vector<CBudgetProposal*> GetBudget();
|
||||
bool IsBudgetPaymentBlock(int nHeight);
|
||||
void FillBlockTx(CMutableTransaction& txNew, int& payments);
|
||||
void AddOrUpdateProposal(CBudgetVote& vote);
|
||||
|
||||
void Clear(){
|
||||
@ -114,7 +113,7 @@ class CBudgetProposal
|
||||
{
|
||||
private:
|
||||
// critical section to protect the inner data structures
|
||||
//mutable CCriticalSection cs;
|
||||
mutable CCriticalSection cs;
|
||||
int64_t nAlloted;
|
||||
|
||||
public:
|
||||
@ -124,6 +123,7 @@ public:
|
||||
//cache object
|
||||
|
||||
CBudgetProposal();
|
||||
CBudgetProposal(const CBudgetProposal& other);
|
||||
CBudgetProposal(std::string strProposalNameIn);
|
||||
|
||||
void Sync(CNode* node);
|
||||
@ -136,7 +136,7 @@ public:
|
||||
std::string GetName();
|
||||
int GetBlockStart();
|
||||
int GetBlockEnd();
|
||||
std::string GetPaymentAddress();
|
||||
CScript GetPayee();
|
||||
double GetRatio();
|
||||
int GetYeas();
|
||||
int GetNays();
|
||||
|
@ -19,6 +19,11 @@ std::string COutPoint::ToStringShort() const
|
||||
return strprintf("%s-%u", hash.ToString().substr(0,64), n);
|
||||
}
|
||||
|
||||
uint256 COutPoint::GetHash()
|
||||
{
|
||||
return Hash(BEGIN(hash), END(hash), BEGIN(n), END(n));
|
||||
}
|
||||
|
||||
CTxIn::CTxIn(COutPoint prevoutIn, CScript scriptSigIn, uint32_t nSequenceIn)
|
||||
{
|
||||
prevout = prevoutIn;
|
||||
|
@ -49,6 +49,8 @@ public:
|
||||
std::string ToString() const;
|
||||
std::string ToStringShort() const;
|
||||
|
||||
uint256 GetHash();
|
||||
|
||||
};
|
||||
|
||||
/** An input of a transaction. It contains the location of the previous
|
||||
|
@ -166,11 +166,15 @@ Value mnbudget(const Array& params, bool fHelp)
|
||||
{
|
||||
nTotalAlloted += prop->GetAlloted();
|
||||
|
||||
CTxDestination address1;
|
||||
ExtractDestination(prop->GetPayee(), address1);
|
||||
CBitcoinAddress address2(address1);
|
||||
|
||||
Object bObj;
|
||||
bObj.push_back(Pair("Name", prop->GetName().c_str()));
|
||||
bObj.push_back(Pair("BlockStart", (int64_t)prop->GetBlockStart()));
|
||||
bObj.push_back(Pair("BlockEnd", (int64_t)prop->GetBlockEnd()));
|
||||
bObj.push_back(Pair("PaymentAddress", prop->GetPaymentAddress()));
|
||||
bObj.push_back(Pair("PaymentAddress", address2.ToString().c_str()));
|
||||
bObj.push_back(Pair("Ratio", prop->GetRatio()));
|
||||
bObj.push_back(Pair("Yeas", (int64_t)prop->GetYeas()));
|
||||
bObj.push_back(Pair("Nays", (int64_t)prop->GetNays()));
|
||||
@ -194,11 +198,15 @@ Value mnbudget(const Array& params, bool fHelp)
|
||||
|
||||
if(prop == NULL) return "Unknown proposal name";
|
||||
|
||||
CTxDestination address1;
|
||||
ExtractDestination(prop->GetPayee(), address1);
|
||||
CBitcoinAddress address2(address1);
|
||||
|
||||
Object obj;
|
||||
obj.push_back(Pair("Name", prop->GetName().c_str()));
|
||||
obj.push_back(Pair("BlockStart", (int64_t)prop->GetBlockStart()));
|
||||
obj.push_back(Pair("BlockEnd", (int64_t)prop->GetBlockEnd()));
|
||||
obj.push_back(Pair("PaymentAddress", prop->GetPaymentAddress()));
|
||||
obj.push_back(Pair("PaymentAddress", address2.ToString().c_str()));
|
||||
obj.push_back(Pair("Ratio", prop->GetRatio()));
|
||||
obj.push_back(Pair("Yeas", (int64_t)prop->GetYeas()));
|
||||
obj.push_back(Pair("Nays", (int64_t)prop->GetNays()));
|
||||
|
Loading…
Reference in New Issue
Block a user