mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-04-04 05:09:03 +00:00
Init P2P server before Stratum server (fixed a data race)
This commit is contained in:
parent
831edc465a
commit
c9193c53d9
1 changed files with 1 additions and 1 deletions
|
@ -996,8 +996,8 @@ void p2pool::download_block_headers(uint64_t current_height)
|
|||
if (parse_block_headers_range(data, size) == current_height - start_height) {
|
||||
update_median_timestamp();
|
||||
if (m_serversStarted.exchange(1) == 0) {
|
||||
m_stratumServer = new StratumServer(this);
|
||||
m_p2pServer = new P2PServer(this);
|
||||
m_stratumServer = new StratumServer(this);
|
||||
#ifdef WITH_RANDOMX
|
||||
if (m_params->m_minerThreads) {
|
||||
start_mining(m_params->m_minerThreads);
|
||||
|
|
Loading…
Reference in a new issue