mirror of
https://github.com/monero-project/monero.git
synced 2025-08-18 18:48:01 -04:00
daemon: don't drop RPC with busy error when running offline
This commit is contained in:
parent
5f09d6c833
commit
e3f0980a1d
4 changed files with 6 additions and 6 deletions
|
@ -61,10 +61,10 @@ namespace cryptonote
|
|||
|
||||
//-----------------------------------------------------------------------------------------------------------------------
|
||||
template<class t_core>
|
||||
t_cryptonote_protocol_handler<t_core>::t_cryptonote_protocol_handler(t_core& rcore, nodetool::i_p2p_endpoint<connection_context>* p_net_layout):m_core(rcore),
|
||||
t_cryptonote_protocol_handler<t_core>::t_cryptonote_protocol_handler(t_core& rcore, nodetool::i_p2p_endpoint<connection_context>* p_net_layout, bool offline):m_core(rcore),
|
||||
m_p2p(p_net_layout),
|
||||
m_syncronized_connections_count(0),
|
||||
m_synchronized(false),
|
||||
m_synchronized(offline),
|
||||
m_stopping(false)
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue