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(); Array arr = retValue.get_array();
BOOST_CHECK(arr.size() == n); 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; SecureString strWalletPass;
strWalletPass.reserve(100); strWalletPass.reserve(100);
strWalletPass = "hello"; strWalletPass = "hello";

View File

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