wallet: clear missing data on rescan_bc

This commit is contained in:
moneromooo-monero 2016-02-15 20:51:30 +00:00
parent 2b5e155816
commit 8f09b71b9b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 4 additions and 0 deletions

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