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; }