This commit is contained in:
Jeff Becker 2016-09-03 15:35:32 -04:00
parent 7cc805b203
commit 682334d844
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -30,7 +30,7 @@ namespace data
bool ExpiresWithin( const uint64_t t, const uint64_t fudge = 1000 ) const {
auto expire = i2p::util::GetMillisecondsSinceEpoch ();
if(fudge) expire += rand() % fudge;
return expire - endDate >= t;
return endDate - expire >= t;
}
};