| 204 | } |
| 205 | |
| 206 | void WalletView::encryptWallet() |
| 207 | { |
| 208 | auto dlg = new AskPassphraseDialog(AskPassphraseDialog::Encrypt, this); |
| 209 | dlg->setModel(walletModel); |
| 210 | connect(dlg, &QDialog::finished, this, &WalletView::encryptionStatusChanged); |
| 211 | GUIUtil::ShowModalDialogAsynchronously(dlg); |
| 212 | } |
| 213 | |
| 214 | void WalletView::backupWallet() |
| 215 | { |
no test coverage detected