diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-04 19:32:48 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-04 19:33:22 +0000 |
commit | cbec8eb10bd0f0d82b6524df2b4af714b1b3599a (patch) | |
tree | e0b76ebc38531dac1c7dafe183e3ef1c2dbfe3a1 /src/wallet/wallet2.cpp | |
parent | Merge pull request #6086 (diff) | |
download | monero-cbec8eb10bd0f0d82b6524df2b4af714b1b3599a.tar.xz |
wallet2: fix pool txes not being flushed when mined
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 7f8b48b8d..e60c6b7e1 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3277,7 +3277,7 @@ void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blo // leak allowing a passive adversary with traffic analysis capability to // infer when we get an incoming output std::vector<std::pair<cryptonote::transaction, bool>> process_pool_txs; - update_pool_state(process_pool_txs, refreshed); + update_pool_state(process_pool_txs, true); bool first = true, last = false; while(m_run.load(std::memory_order_relaxed)) |