diff options
| author | Russell Yanofsky <[email protected]> | 2018-08-23 13:42:31 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2020-08-26 05:52:31 -0400 |
| commit | 91aced7c7e6e75c1f5896b7e3843015177f32748 (patch) | |
| tree | 7351419b8aae0c0e2b5c9d0df7fbb2079d637b26 /src/qt/bitcoingui.cpp | |
| parent | gui: Partially revert #10244 gArgs and Params changes (diff) | |
| download | discoin-91aced7c7e6e75c1f5896b7e3843015177f32748.tar.xz discoin-91aced7c7e6e75c1f5896b7e3843015177f32748.zip | |
gui: Remove unused interfaces::Node references
Remove Node references no longer needed after previous commit
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 56adbf249..8935ff19b 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -95,7 +95,7 @@ BitcoinGUI::BitcoinGUI(interfaces::Node& node, const PlatformStyle *_platformSty updateWindowTitle(); rpcConsole = new RPCConsole(node, _platformStyle, nullptr); - helpMessageDialog = new HelpMessageDialog(node, this, false); + helpMessageDialog = new HelpMessageDialog(this, false); #ifdef ENABLE_WALLET if(enableWallet) { @@ -821,7 +821,7 @@ void BitcoinGUI::aboutClicked() if(!clientModel) return; - HelpMessageDialog dlg(m_node, this, true); + HelpMessageDialog dlg(this, true); dlg.exec(); } |