aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-02-22 10:36:19 -0500
committerLuke Dashjr <luke-jr+git@utopios.org>2012-02-22 10:36:19 -0500
commitc170d03e036553313bb9eb2e306146d6cc0f4ac6 (patch)
tree50c17803cbeb5699a80e4d86a2efe29d0a3d82fd
parent0d56f11ada27d8fa60c8f5179917a7c9de4a8c4b (diff)
downloadbitcoin-c170d03e036553313bb9eb2e306146d6cc0f4ac6.tar.xz
Bugfix: Instead of reporting "bitcoin-qt" for both bitcoind and Bitcoin-Qt, report "Satoshi" which is at least correct
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b73037fb6a..812386a801 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<CWallet*> setpwalletRegistered;