Fix comment.

This commit is contained in:
Simon 2016-08-23 09:24:54 -07:00
parent badb9a9c2f
commit 2e0cc87acf
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ bool CWalletDB::WriteZKey(const libzcash::PaymentAddress& addr, const libzcash::
if (!Write(std::make_pair(std::string("zkeymeta"), addr), keyMeta))
return false;
// pair is: tuple_key("spendingkey", paymentaddress) --> secretkey
// pair is: tuple_key("zkey", paymentaddress) --> secretkey
return Write(std::make_pair(std::string("zkey"), addr), key, false);
}