aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-04-21 00:13:12 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-04-21 13:35:59 +0200
commitfdf72859504d063d0a6b60a6dac5ad170bd86440 (patch)
tree8bbf7e2c014bd5ea56b0ab2a9b70dc926c6e6826 /src/qt/rpcconsole.h
parent61457c179aec23227dcf3952c575052204103b50 (diff)
downloadbitcoin-fdf72859504d063d0a6b60a6dac5ad170bd86440.tar.xz
refactor: Make `RPCExecutor*` a member of the `RPCConsole` class
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r--src/qt/rpcconsole.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h
index 30e41bae0b..94bc513c5b 100644
--- a/src/qt/rpcconsole.h
+++ b/src/qt/rpcconsole.h
@@ -21,6 +21,7 @@
class ClientModel;
class PlatformStyle;
+class RPCExecutor;
class RPCTimerInterface;
class WalletModel;
@@ -173,6 +174,7 @@ private:
int consoleFontSize = 0;
QCompleter *autoCompleter = nullptr;
QThread thread;
+ RPCExecutor* m_executor{nullptr};
WalletModel* m_last_wallet_model{nullptr};
bool m_is_executing{false};
QByteArray m_peer_widget_header_state;