Merge pull request #671

8f09b71 wallet: clear missing data on rescan_bc (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-02-17 17:09:48 +02:00
commit 6636b0a6da
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

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