| 528 | } |
| 529 | |
| 530 | std::string LicenseInfo() |
| 531 | { |
| 532 | const std::string URL_SOURCE_CODE = "<https://github.com/BTCGPU/BTCGPU>"; |
| 533 | const std::string URL_WEBSITE = "<https://bitcoingold.org>"; |
| 534 | |
| 535 | return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" + |
| 536 | "\n" + |
| 537 | strprintf(_("Please contribute if you find %s useful. " |
| 538 | "Visit %s for further information about the software."), |
| 539 | PACKAGE_NAME, URL_WEBSITE) + |
| 540 | "\n" + |
| 541 | strprintf(_("The source code is available from %s."), |
| 542 | URL_SOURCE_CODE) + |
| 543 | "\n" + |
| 544 | "\n" + |
| 545 | _("This is experimental software.") + "\n" + |
| 546 | strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>") + "\n" + |
| 547 | "\n" + |
| 548 | strprintf(_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard."), "<https://www.openssl.org>") + |
| 549 | "\n"; |
| 550 | } |
| 551 | |
| 552 | static void BlockNotifyCallback(bool initialSync, const CBlockIndex *pBlockIndex) |
| 553 | { |
no test coverage detected