aboutsummaryrefslogtreecommitdiff
path: root/src/util/system.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-02-21 15:30:46 +0000
committerfanquake <fanquake@gmail.com>2022-02-22 15:36:19 +0000
commit4c3e3c57463b029d335e685d3dcdaf26456666cf (patch)
tree9edc1a66757f5d4fcd2aa5a4d94cb52fd1ce8ff6 /src/util/system.cpp
parentc44e734dca64a15fae92255a5d848c04adaad2fa (diff)
downloadbitcoin-4c3e3c57463b029d335e685d3dcdaf26456666cf.tar.xz
refactor: shift CopyrightHolders() and LicenseInfo() to clientversion.cpp
Diffstat (limited to 'src/util/system.cpp')
-rw-r--r--src/util/system.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp
index 69811a751b..aa9122106b 100644
--- a/src/util/system.cpp
+++ b/src/util/system.cpp
@@ -1342,18 +1342,6 @@ int GetNumCores()
return std::thread::hardware_concurrency();
}
-std::string CopyrightHolders(const std::string& strPrefix)
-{
- const auto copyright_devs = strprintf(_(COPYRIGHT_HOLDERS).translated, COPYRIGHT_HOLDERS_SUBSTITUTION);
- std::string strCopyrightHolders = strPrefix + copyright_devs;
-
- // Make sure Bitcoin Core copyright is not removed by accident
- if (copyright_devs.find("Bitcoin Core") == std::string::npos) {
- strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
- }
- return strCopyrightHolders;
-}
-
// Obtain the application startup time (used for uptime calculation)
int64_t GetStartupTime()
{