diff options
| author | Luke Dashjr <[email protected]> | 2012-02-22 10:36:19 -0500 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-02-22 10:36:19 -0500 |
| commit | c170d03e036553313bb9eb2e306146d6cc0f4ac6 (patch) | |
| tree | 50c17803cbeb5699a80e4d86a2efe29d0a3d82fd /src/main.cpp | |
| parent | Fix tests after 38067c18 (diff) | |
| download | discoin-c170d03e036553313bb9eb2e306146d6cc0f4ac6.tar.xz discoin-c170d03e036553313bb9eb2e306146d6cc0f4ac6.zip | |
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 b73037fb6..812386a80 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; |