diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-12-31 22:34:57 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-12-31 22:34:57 +0200 |
commit | b98d88c17e1650fbdca03fb13bb843f071e673c5 (patch) | |
tree | c92edc356cc4b4c2a511f3823c8f9e108aa33f00 /src/daemon/daemon.cpp | |
parent | Merge pull request #586 (diff) | |
parent | Nicer looking exit when blockchain.bin is found (diff) | |
download | monero-b98d88c17e1650fbdca03fb13bb843f071e673c5.tar.xz |
Merge pull request #587
1e07110 Nicer looking exit when blockchain.bin is found (moneromooo-monero)
Diffstat (limited to 'src/daemon/daemon.cpp')
-rw-r--r-- | src/daemon/daemon.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 6093ecdf8..ed6a66722 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -118,7 +118,8 @@ bool t_daemon::run(bool interactive) try { - mp_internals->core.run(); + if (!mp_internals->core.run()) + return false; mp_internals->rpc.run(); daemonize::t_command_server* rpc_commands; |