fixed compile err
This commit is contained in:
parent
eebb03eb13
commit
386a39d00e
@ -598,7 +598,7 @@ void CMasternodePayments::CleanPaymentList()
|
|||||||
if(chainActive.Tip() == NULL) return;
|
if(chainActive.Tip() == NULL) return;
|
||||||
|
|
||||||
//keep up to five cycles for historical sake
|
//keep up to five cycles for historical sake
|
||||||
int nLimit = std::max(((int)mnodeman.size())*1.25, 1000);
|
int nLimit = std::max(int(mnodeman.size()*1.25), 1000);
|
||||||
|
|
||||||
std::map<uint256, CMasternodePaymentWinner>::iterator it = mapMasternodePayeeVotes.begin();
|
std::map<uint256, CMasternodePaymentWinner>::iterator it = mapMasternodePayeeVotes.begin();
|
||||||
while(it != mapMasternodePayeeVotes.end()) {
|
while(it != mapMasternodePayeeVotes.end()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user