From 45defbaa5c24722d8d05eeb37d1dde59647cd160 Mon Sep 17 00:00:00 2001 From: Adrian Gallagher Date: Sat, 25 Apr 2020 05:12:39 -0700 Subject: [PATCH] Litecoin: Fix intro copyright year --- src/util/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/system.cpp b/src/util/system.cpp index 4ad29179f..7a171686d 100644 --- a/src/util/system.cpp +++ b/src/util/system.cpp @@ -1213,7 +1213,7 @@ std::string CopyrightHolders(const std::string& strPrefix) if (copyright_devs.find("Bitcoin Core") == std::string::npos) { std::string strYear = strPrefix; strYear.replace(strYear.find("2011"), sizeof("2011")-1, "2009"); - strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers"; + strCopyrightHolders += "\n" + strYear + "The Bitcoin Core developers"; } return strCopyrightHolders; }