enable async refresh

This commit is contained in:
m2049r 2021-09-16 08:23:36 +02:00
parent 8ab87421d9
commit f3a45f26c4
No known key found for this signature in database
GPG Key ID: 4386E69AF260078D
1 changed files with 4 additions and 0 deletions

View File

@ -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()