From 2f0b2a256d53dfaeb696097669302d0ad6594a04 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 25 Jul 2018 15:53:28 -0700 Subject: [PATCH] Clean up for rebase: rename mapNoteData to mapSproutNoteData. --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); }