diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-04-28 00:07:17 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-08-13 16:40:03 +0300 |
commit | ead771bf6fc7a4b96a03d4938796c88657c69ba6 (patch) | |
tree | ea05b1a9d4ef2048dce72a8f9617dbbf0ccb59bd /src/qt | |
parent | ad5f614bf326d739424e8b403066f2d4275e4c1b (diff) |
qt: Rename qt-init thread before logging start
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index f53fcc41f3..efff384104 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -163,8 +163,8 @@ void BitcoinCore::initialize() { try { - qDebug() << __func__ << ": Running initialization in thread"; util::ThreadRename("qt-init"); + qDebug() << __func__ << ": Running initialization in thread"; interfaces::BlockAndHeaderTipInfo tip_info; bool rv = m_node.appInitMain(&tip_info); Q_EMIT initializeResult(rv, tip_info); |