diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 85e6944c..be101df6 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -597,8 +597,7 @@ void CWallet::ClearNoteWitnessCache() LOCK(cs_wallet); for (std::pair& wtxItem : mapWallet) { for (mapNoteData_t::value_type& item : wtxItem.second.mapNoteData) { - CNoteData* nd = &(item.second); - nd->witnesses.clear(); + item.second.witnesses.clear(); } } }