Merge pull request 'enable async refresh' (#420) from m2049r/wownero:fix_asyncrefresh into master

Reviewed-on: https://git.wownero.com/wownero/wownero/pulls/420
This commit is contained in:
wowario 2021-09-17 16:16:01 +00:00
commit 51e7a4178e
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()