| 473 | } |
| 474 | |
| 475 | std::string LicenseInfo() |
| 476 | { |
| 477 | return FormatParagraph(strprintf(_("Copyright (C) 2009-%i The Bitcoin XT Developers"), COPYRIGHT_YEAR)) + "\n" + |
| 478 | "\n" + |
| 479 | FormatParagraph(_("This is experimental software.")) + "\n" + |
| 480 | "\n" + |
| 481 | FormatParagraph(_("Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>.")) + "\n" + |
| 482 | "\n" + |
| 483 | FormatParagraph(_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard.")) + |
| 484 | "\n"; |
| 485 | } |
| 486 | |
| 487 | static void BlockNotifyCallback(const uint256& hashNewTip) |
| 488 | { |
no test coverage detected