mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
Merge pull request #1308
0c530de
Wallet API: Pause refresh while creating transaction (Jacob Brydolf)
This commit is contained in:
commit
e8a55db29d
1 changed files with 6 additions and 0 deletions
|
@ -545,6 +545,8 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const
|
||||||
|
|
||||||
{
|
{
|
||||||
clearStatus();
|
clearStatus();
|
||||||
|
// Pause refresh thread while creating transaction
|
||||||
|
pauseRefresh();
|
||||||
vector<cryptonote::tx_destination_entry> dsts;
|
vector<cryptonote::tx_destination_entry> dsts;
|
||||||
cryptonote::tx_destination_entry de;
|
cryptonote::tx_destination_entry de;
|
||||||
|
|
||||||
|
@ -678,6 +680,8 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const
|
||||||
|
|
||||||
transaction->m_status = m_status;
|
transaction->m_status = m_status;
|
||||||
transaction->m_errorString = m_errorString;
|
transaction->m_errorString = m_errorString;
|
||||||
|
// Resume refresh thread
|
||||||
|
startRefresh();
|
||||||
return transaction;
|
return transaction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -844,6 +848,7 @@ void WalletImpl::doRefresh()
|
||||||
|
|
||||||
void WalletImpl::startRefresh()
|
void WalletImpl::startRefresh()
|
||||||
{
|
{
|
||||||
|
LOG_PRINT_L2(__FUNCTION__ << ": refresh started/resumed...");
|
||||||
if (!m_refreshEnabled) {
|
if (!m_refreshEnabled) {
|
||||||
m_refreshEnabled = true;
|
m_refreshEnabled = true;
|
||||||
m_refreshCV.notify_one();
|
m_refreshCV.notify_one();
|
||||||
|
@ -864,6 +869,7 @@ void WalletImpl::stopRefresh()
|
||||||
|
|
||||||
void WalletImpl::pauseRefresh()
|
void WalletImpl::pauseRefresh()
|
||||||
{
|
{
|
||||||
|
LOG_PRINT_L2(__FUNCTION__ << ": refresh paused...");
|
||||||
// TODO synchronize access
|
// TODO synchronize access
|
||||||
if (!m_refreshThreadDone) {
|
if (!m_refreshThreadDone) {
|
||||||
m_refreshEnabled = false;
|
m_refreshEnabled = false;
|
||||||
|
|
Loading…
Reference in a new issue