diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2012-02-22 10:36:19 -0500 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2012-02-22 10:36:19 -0500 |
commit | c170d03e036553313bb9eb2e306146d6cc0f4ac6 (patch) | |
tree | 50c17803cbeb5699a80e4d86a2efe29d0a3d82fd /src/main.cpp | |
parent | 0d56f11ada27d8fa60c8f5179917a7c9de4a8c4b (diff) |
Bugfix: Instead of reporting "bitcoin-qt" for both bitcoind and Bitcoin-Qt, report "Satoshi" which is at least correct
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
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; |