| 276 | } |
| 277 | |
| 278 | void WalletView::unlockWallet() |
| 279 | { |
| 280 | if(!walletModel) |
| 281 | return; |
| 282 | // Unlock wallet when requested by wallet model |
| 283 | if (walletModel->getEncryptionStatus() == WalletModel::Locked) |
| 284 | { |
| 285 | AskPassphraseDialog dlg(AskPassphraseDialog::Unlock, this); |
| 286 | dlg.setModel(walletModel); |
| 287 | dlg.exec(); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void WalletView::usedSendingAddresses() |
| 292 | { |
nothing calls this directly
no test coverage detected