diff options
author | furszy <matiasfurszyfer@protonmail.com> | 2022-12-16 23:25:39 -0300 |
---|---|---|
committer | furszy <matiasfurszyfer@protonmail.com> | 2023-04-03 17:23:43 -0300 |
commit | 68eed5df8656bed1be6526b014e58d3123102b03 (patch) | |
tree | e8a7d4306b55d3424183ff27357ab33a028cfcc7 /src/qt/sendcoinsdialog.cpp | |
parent | 306aab5bb471904faed325d9f3b38b7e891c7bbb (diff) |
test,gui: add coverage for PSBT creation on legacy watch-only wallets
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
-rw-r--r-- | src/qt/sendcoinsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 9c1d3f48e0..48f7fb6ad1 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -403,7 +403,7 @@ void SendCoinsDialog::presentPSBT(PartiallySignedTransaction& psbtx) CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION); ssTx << psbtx; GUIUtil::setClipboard(EncodeBase64(ssTx.str()).c_str()); - QMessageBox msgBox; + QMessageBox msgBox(this); //: Caption of "PSBT has been copied" messagebox msgBox.setText(tr("Unsigned Transaction", "PSBT copied")); msgBox.setInformativeText(tr("The PSBT has been copied to the clipboard. You can also save it.")); |