Fix comment and formatting per review

This commit is contained in:
Simon 2016-09-29 22:07:38 -07:00
parent 2aa9c0253a
commit 82bd9ee81b
2 changed files with 4 additions and 3 deletions

View File

@ -1065,7 +1065,7 @@ BOOST_AUTO_TEST_CASE(rpc_wallet_encrypted_wallet_zkeys)
Array arr = retValue.get_array();
BOOST_CHECK(arr.size() == n);
// Encrypt the wallet (we can''t call RPC encryptwallet as that shuts down node)
// Encrypt the wallet (we can't call RPC encryptwallet as that shuts down node)
SecureString strWalletPass;
strWalletPass.reserve(100);
strWalletPass = "hello";

View File

@ -200,17 +200,18 @@ bool CWallet::AddCryptedSpendingKey(const libzcash::PaymentAddress &address,
return true;
{
LOCK(cs_wallet);
if (pwalletdbEncryption)
if (pwalletdbEncryption) {
return pwalletdbEncryption->WriteCryptedZKey(address,
vk,
vchCryptedSecret,
mapZKeyMetadata[address]);
else
} else {
return CWalletDB(strWalletFile).WriteCryptedZKey(address,
vk,
vchCryptedSecret,
mapZKeyMetadata[address]);
}
}
return false;
}