enable async refresh
This commit is contained in:
parent
8ab87421d9
commit
f3a45f26c4
|
@ -435,6 +435,10 @@ WalletImpl::WalletImpl(NetworkType nettype, uint64_t kdf_rounds)
|
||||||
|
|
||||||
m_refreshIntervalMillis = DEFAULT_REFRESH_INTERVAL_MILLIS;
|
m_refreshIntervalMillis = DEFAULT_REFRESH_INTERVAL_MILLIS;
|
||||||
|
|
||||||
|
m_refreshThread = boost::thread([this] () {
|
||||||
|
this->refreshThreadFunc();
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WalletImpl::~WalletImpl()
|
WalletImpl::~WalletImpl()
|
||||||
|
|
Loading…
Reference in New Issue