Merge pull request #1047 from ssiloti/rpcm-cleanup

rpc_manager: remove unused timer
This commit is contained in:
Arvid Norberg 2016-08-31 02:04:00 -04:00 committed by GitHub
commit 44a761e5c8
2 changed files with 0 additions and 2 deletions

View File

@ -114,7 +114,6 @@ private:
dht_logger* m_log;
dht_settings const& m_settings;
routing_table& m_table;
time_point m_timer;
node_id m_our_id;
std::uint32_t m_allocated_observers:31;
std::uint32_t m_destructing:1;

View File

@ -182,7 +182,6 @@ rpc_manager::rpc_manager(node_id const& our_id
, m_log(log)
, m_settings(settings)
, m_table(table)
, m_timer(aux::time_now())
, m_our_id(our_id)
, m_allocated_observers(0)
, m_destructing(false)