From c9339bb61fd98c5e454d34f81afa384bc87918f6 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 17 Aug 2018 21:39:16 +0100 Subject: [PATCH] test: Fix comment in WalletTests.FindMySaplingNotes --- src/wallet/gtest/test_wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/gtest/test_wallet.cpp b/src/wallet/gtest/test_wallet.cpp index c89cfc921..d79b69ea0 100644 --- a/src/wallet/gtest/test_wallet.cpp +++ b/src/wallet/gtest/test_wallet.cpp @@ -491,7 +491,7 @@ TEST(WalletTests, FindMySaplingNotes) { ASSERT_EQ(static_cast(maybe_tx), true); auto tx = maybe_tx.get(); - // No Sapling notes can be found in tx which belong to the wallet + // No Sapling notes can be found in tx which does not belong to the wallet CWalletTx wtx {&wallet, tx}; ASSERT_FALSE(wallet.HaveSaplingSpendingKey(fvk)); auto noteMap = wallet.FindMySaplingNotes(wtx);