gui: Remove un-actionable TODO

This commit is contained in:
MarcoFalke
2020-05-17 11:02:17 -04:00
parent dc5333d31f
commit 4444dbf4d5
3 changed files with 5 additions and 14 deletions

View File

@@ -304,16 +304,10 @@ WalletModel::EncryptionStatus WalletModel::getEncryptionStatus() const
bool WalletModel::setWalletEncrypted(bool encrypted, const SecureString &passphrase)
{
if(encrypted)
{
// Encrypt
if (encrypted) {
return m_wallet->encryptWallet(passphrase);
}
else
{
// Decrypt -- TODO; not supported yet
return false;
}
return false;
}
bool WalletModel::setWalletLocked(bool locked, const SecureString &passPhrase)