Require password to open cache viewer

This commit is contained in:
tobtoht 2022-03-04 13:42:14 +01:00
parent 78ef5cbe6b
commit 4950d659f3
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -1001,6 +1001,10 @@ void MainWindow::showDebugInfo() {
}
void MainWindow::showWalletCacheDebugDialog() {
if (!this->verifyPassword()) {
return;
}
WalletCacheDebugDialog dialog{m_ctx, this};
dialog.exec();
}