From 8f09b71b9b8a961b620120cbe1c1ff9fde7ef99f Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Mon, 15 Feb 2016 20:51:30 +0000 Subject: [PATCH] wallet: clear missing data on rescan_bc --- src/wallet/wallet2.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index ed6d3842..ce829b00 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -902,6 +902,10 @@ bool wallet2::clear() m_blockchain.clear(); m_transfers.clear(); m_key_images.clear(); + m_unconfirmed_txs.clear(); + m_payments.clear(); + m_tx_keys.clear(); + m_confirmed_txs.clear(); m_local_bc_height = 1; return true; }