diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-10-06 17:52:05 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-10-08 13:02:14 -0400 |
commit | facec1c643105d0ae74b5d32cf33d593f9e82a36 (patch) | |
tree | 70ddbd9cd41bb94a5667ec8ccc24c45b7ffe203f /src/qt/walletcontroller.h | |
parent | 94e6e9f38deeba61655fee432afe42e66ff72ea3 (diff) |
wallet: Avoid showing GUI popups on RPC errors
Diffstat (limited to 'src/qt/walletcontroller.h')
-rw-r--r-- | src/qt/walletcontroller.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletcontroller.h b/src/qt/walletcontroller.h index fb37b7292c..e50dd5c7eb 100644 --- a/src/qt/walletcontroller.h +++ b/src/qt/walletcontroller.h @@ -100,7 +100,7 @@ protected: QProgressDialog* m_progress_dialog{nullptr}; WalletModel* m_wallet_model{nullptr}; std::string m_error_message; - std::string m_warning_message; + std::vector<std::string> m_warning_message; }; |