diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-11-11 15:45:26 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-11-11 15:45:26 -0600 |
| commit | fe3f6a3e6bd1eb58b172e54410403c695b39daf1 (patch) | |
| tree | 97b120eedc6dac30316f17b1cb2367cb3c5b85ec /src/wallet/wallet2.cpp | |
| parent | a48ef0a65afd2d89b9a81479f587b5b516a31c9c (diff) | |
| parent | 27457a2268220c11977a0772a0d50dc7a8edd998 (diff) | |
| download | monzero-core-fe3f6a3e6bd1eb58b172e54410403c695b39daf1.tar.gz monzero-core-fe3f6a3e6bd1eb58b172e54410403c695b39daf1.tar.xz monzero-core-fe3f6a3e6bd1eb58b172e54410403c695b39daf1.zip | |
Merge pull request #6097
27457a2 wallet2: fix pool txes not being flushed when mined (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -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)) |
