diff options
author | fanquake <fanquake@gmail.com> | 2022-02-21 15:30:46 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-02-22 15:36:19 +0000 |
commit | 4c3e3c57463b029d335e685d3dcdaf26456666cf (patch) | |
tree | 9edc1a66757f5d4fcd2aa5a4d94cb52fd1ce8ff6 /src/init.cpp | |
parent | c44e734dca64a15fae92255a5d848c04adaad2fa (diff) |
refactor: shift CopyrightHolders() and LicenseInfo() to clientversion.cpp
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/init.cpp b/src/init.cpp index 64ed868333..02ea30e28e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -594,25 +594,6 @@ void SetupServerArgs(ArgsManager& argsman) argsman.AddHiddenArgs(hidden_args); } -std::string LicenseInfo() -{ - const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>"; - - return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2009, COPYRIGHT_YEAR) + " ") + "\n" + - "\n" + - strprintf(_("Please contribute if you find %s useful. " - "Visit %s for further information about the software.").translated, - PACKAGE_NAME, "<" PACKAGE_URL ">") + - "\n" + - strprintf(_("The source code is available from %s.").translated, - URL_SOURCE_CODE) + - "\n" + - "\n" + - _("This is experimental software.").translated + "\n" + - strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s").translated, "COPYING", "<https://opensource.org/licenses/MIT>") + - "\n"; -} - static bool fHaveGenesis = false; static Mutex g_genesis_wait_mutex; static std::condition_variable g_genesis_wait_cv; |