diff options
| author | Luke Dashjr <[email protected]> | 2016-02-03 05:38:27 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2016-02-03 05:38:51 +0000 |
| commit | 027fdb83b41ae9e9125cf61f6460c03ab34e5961 (patch) | |
| tree | 4f7ac912c5344c1361cda2046e453e5b69f344fc /src/bitcoind.cpp | |
| parent | Rewrite FormatParagraph to handle newlines within input strings correctly (diff) | |
| download | discoin-027fdb83b41ae9e9125cf61f6460c03ab34e5961.tar.xz discoin-027fdb83b41ae9e9125cf61f6460c03ab34e5961.zip | |
When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen
Diffstat (limited to 'src/bitcoind.cpp')
| -rw-r--r-- | src/bitcoind.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 440356aa8..9ad5a4786 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -17,6 +17,7 @@ #include "httpserver.h" #include "httprpc.h" #include "rpcserver.h" +#include "utilstrencodings.h" #include <boost/algorithm/string/predicate.hpp> #include <boost/filesystem.hpp> @@ -82,7 +83,7 @@ bool AppInit(int argc, char* argv[]) if (mapArgs.count("-version")) { - strUsage += LicenseInfo(); + strUsage += FormatParagraph(LicenseInfo()); } else { |