diff options
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_defs.h b/src/cryptonote_protocol/cryptonote_protocol_defs.h index eddb3b67b..850108858 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_defs.h +++ b/src/cryptonote_protocol/cryptonote_protocol_defs.h @@ -27,14 +27,14 @@ namespace cryptonote std::string peer_id; uint64_t recv_count; - time_t recv_idle_time; + uint64_t recv_idle_time; uint64_t send_count; - time_t send_idle_time; + uint64_t send_idle_time; std::string state; - time_t live_time; + uint64_t live_time; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(incoming) |