mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
qt, refactor: Fix code styling of moved InitExecutor class
This commit is contained in:
parent
c82165a557
commit
8169fc4e73
2 changed files with 8 additions and 10 deletions
|
@ -15,8 +15,8 @@
|
|||
#include <QString>
|
||||
#include <QThread>
|
||||
|
||||
InitExecutor::InitExecutor(interfaces::Node& node) :
|
||||
QObject(), m_node(node)
|
||||
InitExecutor::InitExecutor(interfaces::Node& node)
|
||||
: QObject(), m_node(node)
|
||||
{
|
||||
this->moveToThread(&m_thread);
|
||||
m_thread.start();
|
||||
|
@ -38,8 +38,7 @@ void InitExecutor::handleRunawayException(const std::exception *e)
|
|||
|
||||
void InitExecutor::initialize()
|
||||
{
|
||||
try
|
||||
{
|
||||
try {
|
||||
util::ThreadRename("qt-init");
|
||||
qDebug() << __func__ << ": Running initialization in thread";
|
||||
interfaces::BlockAndHeaderTipInfo tip_info;
|
||||
|
@ -54,8 +53,7 @@ void InitExecutor::initialize()
|
|||
|
||||
void InitExecutor::shutdown()
|
||||
{
|
||||
try
|
||||
{
|
||||
try {
|
||||
qDebug() << __func__ << ": Running Shutdown in thread";
|
||||
m_node.appShutdown();
|
||||
qDebug() << __func__ << ": Shutdown finished";
|
||||
|
|
Loading…
Add table
Reference in a new issue