revert CCryptoKeyStore::SetCrypted() return value

This commit is contained in:
Larry Ruane 2019-11-04 08:02:51 -07:00
parent d9fcc2b558
commit e33ebdb8bb
1 changed files with 2 additions and 1 deletions

View File

@ -192,7 +192,8 @@ bool CCryptoKeyStore::SetCrypted()
return true;
if (!(mapKeys.empty() && mapSproutSpendingKeys.empty() && mapSaplingSpendingKeys.empty()))
return false;
return fUseCrypto = true;
fUseCrypto = true;
return true;
}
bool CCryptoKeyStore::Lock()