diff options
| author | Giel van Schijndel <[email protected]> | 2012-06-30 17:14:28 +0200 |
|---|---|---|
| committer | Giel van Schijndel <[email protected]> | 2012-07-17 01:50:35 +0200 |
| commit | 9f46ab62b1ba47ad594d5e06e4fe837297f4790e (patch) | |
| tree | 54dbf8d0cf39d3b30ca19061c6f57cc0a8cf92c1 /src/bitcoinrpc.cpp | |
| parent | Give threads a recognisable name to aid in debugging (diff) | |
| download | discoin-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/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 87db11082..c2bf45e1e 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1577,8 +1577,8 @@ void ThreadTopUpKeyPool(void* parg) void ThreadCleanWalletPassphrase(void* parg) { - // Make this thread recognisable as the wallet unlocking thread - RenameThread("bitcoin-unlo-wa"); + // Make this thread recognisable as the wallet relocking thread + RenameThread("bitcoin-lock-wa"); int64 nMyWakeTime = GetTimeMillis() + *((int64*)parg) * 1000; |