From: Luke Dashjr Date: Wed, 22 Feb 2012 15:36:19 +0000 (-0500) Subject: Bugfix: Instead of reporting "bitcoin-qt" for both bitcoind and Bitcoin-Qt, report... X-Git-Tag: v0.4.0-unstable~129^2~192^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=c170d03e036553313bb9eb2e306146d6cc0f4ac6 Bugfix: Instead of reporting "bitcoin-qt" for both bitcoind and Bitcoin-Qt, report "Satoshi" which is at least correct --- diff --git a/src/main.cpp b/src/main.cpp index b73037f..812386a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,7 +21,7 @@ using namespace boost; // Name of client reported in the 'version' message. Report the same name // for both bitcoind and bitcoin-qt, to make it harder for attackers to // target servers or GUI users specifically. -const std::string CLIENT_NAME("bitcoin-qt"); +const std::string CLIENT_NAME("Satoshi"); CCriticalSection cs_setpwalletRegistered; set setpwalletRegistered;