fixed compile err

This commit is contained in:
Evan Duffield 2015-09-02 09:53:53 -07:00
parent eebb03eb13
commit 386a39d00e

View File

@ -598,7 +598,7 @@ void CMasternodePayments::CleanPaymentList()
if(chainActive.Tip() == NULL) return;
//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();
while(it != mapMasternodePayeeVotes.end()) {