diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 7172ea40c..d02b03e7c 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -472,7 +472,7 @@ std::set> CWallet::GetNullifiersFor { std::set> nullifierSet; for (const auto & txPair : mapWallet) { - for (const auto & noteDataPair : txPair.second.mapNoteData) { + for (const auto & noteDataPair : txPair.second.mapSproutNoteData) { if (noteDataPair.second.nullifier && addresses.count(noteDataPair.second.address)) { nullifierSet.insert(std::make_pair(noteDataPair.second.address, noteDataPair.second.nullifier.get())); }