Skip to content

Commit e0c41a9

Browse files
committed
qml: shorten wallet controller thread name
Core prefixes OS thread names with "b-" and now asserts the supplied name is at most 13 chars. Keep the wallet worker under that limit.
1 parent 1fd7fdb commit e0c41a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

qml/walletqmlcontroller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ WalletQmlController::WalletQmlController(interfaces::Node& node, QObject *parent
7575
m_worker->moveToThread(m_worker_thread);
7676
m_worker_thread->start();
7777
QTimer::singleShot(0, m_worker, []() {
78-
util::ThreadRename("qml-walletctrl");
78+
util::ThreadRename("qml-walletctl");
7979
});
8080
}
8181

0 commit comments

Comments
 (0)