Fixed data race in tx mempool

This commit is contained in:
SChernykh
2024-03-07 17:48:49 +01:00
parent e82fe8cdc1
commit 29d84e3bcf
3 changed files with 26 additions and 14 deletions
+1 -1
View File
@@ -361,7 +361,7 @@ void p2pool::handle_miner_data(MinerData& data)
"\ndifficulty = " << data.difficulty <<
"\nmedian_weight = " << data.median_weight <<
"\nalready_generated_coins = " << data.already_generated_coins <<
"\ntransactions = " << m_mempool->m_transactions.size() <<
"\ntransactions = " << m_mempool->size() <<
"\n---------------------------------------------------------------------------------------------------------------"
);