mirror of
https://github.com/monero-project/monero.git
synced 2025-12-23 07:29:11 -08:00
Initialize transaction history if empty
This commit is contained in:
@@ -79,6 +79,9 @@ std::vector<TransactionInfo *> TransactionHistoryImpl::getAll() const
|
||||
|
||||
void TransactionHistoryImpl::refresh()
|
||||
{
|
||||
// multithreaded access:
|
||||
boost::lock_guard<boost::mutex> guarg(m_refreshMutex);
|
||||
|
||||
// TODO: configurable values;
|
||||
uint64_t min_height = 0;
|
||||
uint64_t max_height = (uint64_t)-1;
|
||||
@@ -88,8 +91,6 @@ void TransactionHistoryImpl::refresh()
|
||||
delete t;
|
||||
m_history.clear();
|
||||
|
||||
|
||||
|
||||
// transactions are stored in wallet2:
|
||||
// - confirmed_transfer_details - out transfers
|
||||
// - unconfirmed_transfer_details - pending out transfers
|
||||
|
||||
Reference in New Issue
Block a user