aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletframe.cpp
diff options
context:
space:
mode:
authorSjors Provoost <sjors@sprovoost.nl>2020-01-04 21:13:04 +0800
committerSjors Provoost <sjors@sprovoost.nl>2020-03-27 14:59:19 +0100
commit1cd8dc2556b847e11a238b9e69493cd8fbeecc6c (patch)
treeda770f0772fbbe5b3a11261a3c0448481c34353c /src/qt/walletframe.cpp
parentf6895301f768220f3ea70231d5cc5b45ecbf4488 (diff)
downloadbitcoin-1cd8dc2556b847e11a238b9e69493cd8fbeecc6c.tar.xz
[gui] load PSBT
co-authored-by: Glenn Willen <gwillen@nerdnet.org>
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r--src/qt/walletframe.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp
index dac3326cc4..02a9583ae9 100644
--- a/src/qt/walletframe.cpp
+++ b/src/qt/walletframe.cpp
@@ -163,6 +163,14 @@ void WalletFrame::gotoVerifyMessageTab(QString addr)
walletView->gotoVerifyMessageTab(addr);
}
+void WalletFrame::gotoLoadPSBT()
+{
+ WalletView *walletView = currentWalletView();
+ if (walletView) {
+ walletView->gotoLoadPSBT();
+ }
+}
+
void WalletFrame::encryptWallet(bool status)
{
WalletView *walletView = currentWalletView();