diff options
Diffstat (limited to 'src/qt/walletframe.cpp')
| -rw-r--r-- | src/qt/walletframe.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index b2bb7d554..ccf4830e2 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -186,6 +186,13 @@ void WalletFrame::printPaperWallets() walletView->printPaperWallets(); } +void WalletFrame::importPrivateKey() +{ + WalletView *walletView = currentWalletView(); + if (walletView) + walletView->importPrivateKey(); +} + void WalletFrame::usedSendingAddresses() { WalletView *walletView = currentWalletView(); |