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/daemon.cpp | |
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/daemon.cpp')
-rw-r--r-- | src/daemon/daemon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 2d662b7d3..9b15e62ca 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -68,7 +68,7 @@ public: boost::program_options::variables_map const & vm ) : core{vm} - , protocol{vm, core} + , protocol{vm, core, command_line::get_arg(vm, cryptonote::arg_offline)} , p2p{vm, protocol} { // Handle circular dependencies |