Show uptime in status

This commit is contained in:
SChernykh
2021-10-26 17:55:47 +02:00
parent 6859d11445
commit c0c210664a
3 changed files with 22 additions and 2 deletions

View File

@@ -78,6 +78,7 @@ public:
bool get_difficulty_at_height(uint64_t height, difficulty_type& diff);
time_t zmq_last_active() const { return m_zmqLastActive; }
time_t start_time() const { return m_startTime; }
private:
p2pool(const p2pool&) = delete;
@@ -169,7 +170,8 @@ private:
uv_async_t m_blockTemplateAsync;
uv_async_t m_stopAsync;
time_t m_zmqLastActive = 0;
time_t m_zmqLastActive;
time_t m_startTime;
};
} // namespace p2pool