aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-05-22 22:01:50 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-06-11 12:48:48 +0000
commit0569e635cfe5d0a0e8b3a1fd877010a8bda643d0 (patch)
treed3a654ae6069963a7fbdbe54e148ea69e32beefb /src
parentMerge pull request #6579 (diff)
downloadmonero-0569e635cfe5d0a0e8b3a1fd877010a8bda643d0.tar.xz
rpc: fix comparison of seconds vs microseconds
Diffstat (limited to 'src')
-rw-r--r--src/rpc/rpc_payment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rpc_payment.cpp b/src/rpc/rpc_payment.cpp
index 6cd52523f..ab6831382 100644
--- a/src/rpc/rpc_payment.cpp
+++ b/src/rpc/rpc_payment.cpp
@@ -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)
{