aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-04-09 19:08:00 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-04-09 19:08:02 -0400
commit7ee6fc58f87b4bd75867ee30abe36bb2a67e282c (patch)
treee2af5c18da4f24ace5b9ff817e2a470fe3c2261c
parentcf8073f8d1d18ab2798534bfd442445f0a1cdb6b (diff)
parent23abfb7b7fea6923dc29a9ff1aa958dee83e3bd7 (diff)
downloadbitcoin-7ee6fc58f87b4bd75867ee30abe36bb2a67e282c.tar.xz
Merge #12845: Trivial: Add logging line in init.cpp that was accidentally removed with #10762
23abfb7b7f added logging line back that was accidentally removed with #10762 (Steve Lee) Pull request description: I made the change based off of the DummyWalletInit refactor commit. I can rebase once that is merged. I built with wallet disabled and debug enabled. I then confirmed in the debug output that the logging line I added back indeed printed. Tree-SHA512: 94133aa3add9c73fa33fcc51b89fe0bc58344ab8a0ca63898961932a57b1f14b79e8113d3aeae116e0b91809f5660c636a565ea4681368c7ba85890a30e70589
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 9b6216d656..9edd93000f 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -80,7 +80,7 @@ public:
bool ParameterInteraction() override {return true;}
void RegisterRPC(CRPCTable &) override {}
bool Verify() override {return true;}
- bool Open() override {return true;}
+ bool Open() override {LogPrintf("No wallet support compiled in!\n"); return true;}
void Start(CScheduler& scheduler) override {}
void Flush() override {}
void Stop() override {}