Skip to content

Commit 7ee6fc5

Browse files
author
MarcoFalke
committed
Merge #12845: Trivial: Add logging line in init.cpp that was accidentally removed with #10762
23abfb7 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
2 parents cf8073f + 23abfb7 commit 7ee6fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class DummyWalletInit : public WalletInitInterface {
8080
bool ParameterInteraction() override {return true;}
8181
void RegisterRPC(CRPCTable &) override {}
8282
bool Verify() override {return true;}
83-
bool Open() override {return true;}
83+
bool Open() override {LogPrintf("No wallet support compiled in!\n"); return true;}
8484
void Start(CScheduler& scheduler) override {}
8585
void Flush() override {}
8686
void Stop() override {}

0 commit comments

Comments
 (0)