mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-30 02:31:05 +02:00
Merge #9487: Remove stray semicolon (Fix empty body warning)
cc05896
Remove stray semicolon (Fix empty body warning) (Douglas Roark)
This commit is contained in:
@ -1804,7 +1804,7 @@ void CConnman::ThreadOpenAddedConnections()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Retry every 60 seconds if a connection was attempted, otherwise two seconds
|
// Retry every 60 seconds if a connection was attempted, otherwise two seconds
|
||||||
if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2)));
|
if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2)))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user