diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-01-09 14:38:28 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-01-09 14:40:38 +0100 |
commit | fdbe7f41c02847276e980724e49865daf7951214 (patch) | |
tree | 2269493cdc34a8b0a3cd8dcc071a98def95e8c36 /src/qt/bitcoingui.h | |
parent | c6806ee8694e9c864a29ef260c87b9fed77de84f (diff) | |
parent | 7e4bd19785ff9120b7242ff9f15231868aaf7db4 (diff) |
Merge #11625: Add BitcoinApplication & RPCConsole tests
7e4bd19785 Add BitcoinApplication & RPCConsole tests (Russell Yanofsky)
ca20b65cc0 Move BitcoinApplication to header so it can be tested (Russell Yanofsky)
Pull request description:
Add test coverage for Qt initialization code & basic RPC console functionality
Motivation for this change was a bug in #11603 which existing tests failed to catch.
Tree-SHA512: f66546ffc84b8e07679c66a73b265023fbf6a0cb8f24f1606a5fcae2dd3b4dc7b2c6d26c69dedcec53398a26ef17c4d5fb28c055698fa6e45e89aa2995cefe2f
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 1324dd6625..e6c62d43bd 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -187,6 +187,8 @@ private: Q_SIGNALS: /** Signal raised when a URI was entered or dragged to the GUI */ void receivedURI(const QString &uri); + /** Signal raised when RPC console shown */ + void consoleShown(RPCConsole* console); public Q_SLOTS: /** Set number of connections shown in the UI */ |