rpc: fix comparison of seconds vs microseconds

lite
moneromooo-monero 4 years ago committed by wowario
parent fd83d71bc7
commit eb49cb728e
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -366,7 +366,7 @@ namespace cryptonote
for (std::unordered_map<crypto::public_key, client_info>::iterator i = m_client_info.begin(); i != m_client_info.end(); )
{
std::unordered_map<crypto::public_key, client_info>::iterator j = i++;
const time_t t = std::max(j->second.last_request_timestamp, j->second.update_time);
const time_t t = std::max(j->second.last_request_timestamp / 1000000, j->second.update_time);
const bool erase = t < ((j->second.credits == 0) ? threshold0 : threshold);
if (erase)
{

Loading…
Cancel
Save