diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-02-16 14:19:53 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-02-16 14:19:54 +0100 |
commit | bdf0339dda929026cc4efef835be2c63bc1555a0 (patch) | |
tree | 4ab603849e0a0c7a4c47fca22fa042b1254384cc /src/daemon/protocol.h | |
parent | Merge pull request #3180 (diff) | |
parent | daemon: don't drop RPC with busy error when running offline (diff) | |
download | monero-bdf0339dda929026cc4efef835be2c63bc1555a0.tar.xz |
Merge pull request #3181
e3f0980a daemon: don't drop RPC with busy error when running offline (moneromooo-monero)
Diffstat (limited to 'src/daemon/protocol.h')
-rw-r--r-- | src/daemon/protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/protocol.h b/src/daemon/protocol.h index a251ae47c..fd1d1b638 100644 --- a/src/daemon/protocol.h +++ b/src/daemon/protocol.h @@ -46,9 +46,9 @@ private: public: t_protocol( boost::program_options::variables_map const & vm - , t_core & core + , t_core & core, bool offline = false ) - : m_protocol{core.get(), nullptr} + : m_protocol{core.get(), nullptr, offline} { MGINFO("Initializing cryptonote protocol..."); if (!m_protocol.init(vm)) |