aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGiel van Schijndel <[email protected]>2012-06-30 17:14:28 +0200
committerGiel van Schijndel <[email protected]>2012-07-17 01:50:35 +0200
commit9f46ab62b1ba47ad594d5e06e4fe837297f4790e (patch)
tree54dbf8d0cf39d3b30ca19061c6f57cc0a8cf92c1 /src/main.cpp
parentGive threads a recognisable name to aid in debugging (diff)
downloaddiscoin-9f46ab62b1ba47ad594d5e06e4fe837297f4790e.tar.xz
discoin-9f46ab62b1ba47ad594d5e06e4fe837297f4790e.zip
Fix thread names after review
* Fix wrong thread name for wallet *relocking* thread - Was named the unlocking thread * Use consistent naming Signed-off-by: Giel van Schijndel <[email protected]>
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index bcc5e60d7..c4472c455 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3595,7 +3595,7 @@ void static BitcoinMiner(CWallet *pwallet)
SetThreadPriority(THREAD_PRIORITY_LOWEST);
// Make this thread recognisable as the mining thread
- RenameThread("bitcoin [miner]");
+ RenameThread("bitcoin-miner");
// Each thread has its own key and counter
CReserveKey reservekey(pwallet);