diff options
author | Glenn Willen <gwillen@nerdnet.org> | 2020-01-31 15:59:57 -0800 |
---|---|---|
committer | Glenn Willen <gwillen@nerdnet.org> | 2020-06-19 02:20:04 -0700 |
commit | 11a0ffb29d1b4dcc55c8826873f340ab4196af21 (patch) | |
tree | 539263ebb90413fa6aeea3f2c059104b6a92e2b9 /src/qt/walletframe.cpp | |
parent | a6cb0b0c29d327d01aebb98b0504f317eb19c3dc (diff) |
[gui] Load PSBT from clipboard
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r-- | src/qt/walletframe.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index 5e68ee4f93..ec56f2755f 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -165,11 +165,11 @@ void WalletFrame::gotoVerifyMessageTab(QString addr) walletView->gotoVerifyMessageTab(addr); } -void WalletFrame::gotoLoadPSBT() +void WalletFrame::gotoLoadPSBT(bool from_clipboard) { WalletView *walletView = currentWalletView(); if (walletView) { - walletView->gotoLoadPSBT(); + walletView->gotoLoadPSBT(from_clipboard); } } |