mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-18 10:01:06 +00:00
Remove unused field.
This commit is contained in:
parent
933c0d40b7
commit
82bbef614e
2 changed files with 1 additions and 3 deletions
|
@ -51,8 +51,7 @@ inline static const char *format(double h, char *buf, size_t size)
|
|||
Hashrate::Hashrate(size_t threads, xmrig::Controller *controller) :
|
||||
m_highest(0.0),
|
||||
m_threads(threads),
|
||||
m_timer(nullptr),
|
||||
m_controller(controller)
|
||||
m_timer(nullptr)
|
||||
{
|
||||
m_counts = new uint64_t*[threads];
|
||||
m_timestamps = new uint64_t*[threads];
|
||||
|
|
|
@ -69,7 +69,6 @@ private:
|
|||
uint64_t** m_counts;
|
||||
uint64_t** m_timestamps;
|
||||
uv_timer_t *m_timer;
|
||||
xmrig::Controller *m_controller;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue