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 <me@mortis.eu>
This commit is contained in:
Giel van Schijndel
2012-06-30 17:14:28 +02:00
parent 96931d6f78
commit 9f46ab62b1
3 changed files with 6 additions and 6 deletions

View File

@@ -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;