v0.10.1-wonerujo
wow nero 3 years ago
parent 8ab87421d9
commit 764aa2be23
No known key found for this signature in database
GPG Key ID: 4386E69AF260078D

@ -233,7 +233,7 @@ void TransactionHistoryImpl::refresh()
ti->m_timestamp = pd.m_timestamp;
ti->m_confirmations = 0;
for (const auto &d : pd.m_dests) {
for (const auto &d : pd.m_dests)
{
ti->m_transfers.push_back({d.amount, d.address(m_wallet->m_wallet->nettype(), pd.m_payment_id)});
}
@ -274,4 +274,3 @@ void TransactionHistoryImpl::refresh()
}
} // namespace
}

@ -435,6 +435,10 @@ WalletImpl::WalletImpl(NetworkType nettype, uint64_t kdf_rounds)
m_refreshIntervalMillis = DEFAULT_REFRESH_INTERVAL_MILLIS;
m_refreshThread = boost::thread([this] () {
this->refreshThreadFunc();
});
}
WalletImpl::~WalletImpl()

Loading…
Cancel
Save