mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
Remove stray semicolon (Fix empty body warning)
Empty body introduced by commit #9319 should not be empty.
This commit is contained in:
parent
46b249e578
commit
cc0589639c
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user