From c0f7e4059db2221473ecb4f94e6fd5966260bb5c Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 28 Sep 2018 22:08:07 -0700 Subject: [PATCH] Fix rebasing of CWallet::GetNullifiersForAddresses --- src/wallet/wallet.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index d4ef17616..d838f485e 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -548,12 +548,6 @@ std::set> CWallet::GetNullifiersFor } } } - // Sapling - for (const auto & noteDataPair : txPair.second.mapSaplingNoteData) { - if (noteDataPair.second.nullifier && ivkMap.count(noteDataPair.second.ivk)) { - nullifierSet.insert(std::make_pair(ivkMap[noteDataPair.second.ivk], noteDataPair.second.nullifier.get())); - } - } } return nullifierSet; }