diff options
author | Prateek Sancheti <psancheti110@gmail.com> | 2021-08-07 13:47:17 +0530 |
---|---|---|
committer | Prateek Sancheti <psancheti110@gmail.com> | 2021-08-11 15:40:39 +0530 |
commit | 0237d95323dec7c65b7223c314afdf63aab6b11b (patch) | |
tree | fc408131f1bb3ea47c452eb65cedb1503b4d6f52 /src/qt/bitcoingui.cpp | |
parent | 03826aecc56c5c5c76570805897c2ddf92e11ab6 (diff) |
qt: Add Load PSBT functionaliy with nowallet
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 863225099a..fe606519af 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -110,6 +110,9 @@ BitcoinGUI::BitcoinGUI(interfaces::Node& node, const PlatformStyle *_platformSty connect(activity, &CreateWalletActivity::finished, activity, &QObject::deleteLater); activity->create(); }); + connect(walletFrame, &WalletFrame::message, [this](const QString& title, const QString& message, unsigned int style) { + this->message(title, message, style); + }); setCentralWidget(walletFrame); } else #endif // ENABLE_WALLET |