Remove invalid address comparison from gtest

Addresses cannot be computed from a "null" extended spending key,
because the resulting ak is not of prime order.
This commit is contained in:
Jack Grigg 2019-11-06 10:47:58 +00:00
parent f270979acb
commit 4d13eb71ab
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 0 additions and 1 deletions

View File

@ -479,7 +479,6 @@ TEST(wallet_zkeys_tests, WriteCryptedSaplingZkeyDirectToDb) {
// spending key is crypted, so we can't extract valid payment address
libzcash::SaplingExtendedSpendingKey keyOut;
EXPECT_FALSE(wallet2.GetSaplingExtendedSpendingKey(address, keyOut));
ASSERT_FALSE(address == keyOut.DefaultAddress());
// address -> ivk mapping is not crypted
libzcash::SaplingIncomingViewingKey ivkOut;