Merge pull request #360 from UdjinM6/v0.12.0.x_fix_buffer_overflow

V0.12.0.x SecondsSincePayment
This commit is contained in:
evan82 2015-06-17 13:34:39 -07:00
commit 4229e8a2c9
2 changed files with 14 additions and 13 deletions

View File

@ -245,6 +245,19 @@ void CMasternode::Check()
activeState = MASTERNODE_ENABLED; // OK
}
int64_t CMasternode::SecondsSincePayment() {
int64_t sec = (GetAdjustedTime() - nLastPaid);
int64_t month = 60*60*24*30;
if(sec < month) return sec; //if it's less than 30 days, give seconds
CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION);
ss << vin;
ss << sigTime;
uint256 hash = ss.GetHash();
// return some deterministic value for unknown/unpaid but force it to be more than 30 days old
return month + hash.GetCompact(false);
}
CMasternodeBroadcast::CMasternodeBroadcast()
{

View File

@ -163,19 +163,7 @@ public:
READWRITE(nVotedTimes);
}
int64_t SecondsSincePayment()
{
int64_t sec = (GetAdjustedTime() - nLastPaid);
if(sec < 60*60*24*30) return sec; //if it's less than 30 days, give seconds
CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION);
ss << vin;
ss << sigTime;
uint256 hash = ss.GetHash();
memcpy(&sec, &hash, 64);
return sec;
}
int64_t SecondsSincePayment();
void UpdateFromNewBroadcast(CMasternodeBroadcast& mnb);