MCPcopy Create free account
hub / github.com/ElementsProject/elements / CopyrightHolders

Function CopyrightHolders

src/clientversion.cpp:80–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80std::string CopyrightHolders(const std::string& strPrefix)
81{
82 const auto copyright_devs = strprintf(_(COPYRIGHT_HOLDERS).translated, COPYRIGHT_HOLDERS_SUBSTITUTION);
83 std::string strCopyrightHolders = strPrefix + copyright_devs;
84
85 // Make sure Bitcoin Core copyright is not removed by accident
86 if (copyright_devs.find("Bitcoin Core") == std::string::npos) {
87 strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
88 }
89 return strCopyrightHolders;
90}
91
92std::string LicenseInfo()
93{

Callers 3

LicenseInfoFunction · 0.85
FUZZ_TARGETFunction · 0.85
SplashScreenMethod · 0.85

Calls 2

_Function · 0.85
findMethod · 0.80

Tested by 1

FUZZ_TARGETFunction · 0.68