diff options
| author | MarcoFalke <[email protected]> | 2018-04-09 19:08:00 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-04-09 19:08:02 -0400 |
| commit | 7ee6fc58f87b4bd75867ee30abe36bb2a67e282c (patch) | |
| tree | e2af5c18da4f24ace5b9ff817e2a470fe3c2261c /src | |
| parent | Merge #12917: qa: Windows fixups for functional tests (diff) | |
| parent | added logging line back that was accidentally removed with #10762 (diff) | |
| download | discoin-7ee6fc58f87b4bd75867ee30abe36bb2a67e282c.tar.xz discoin-7ee6fc58f87b4bd75867ee30abe36bb2a67e282c.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 9b6216d65..9edd93000 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 {} |