1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
This commit is contained in:
SpyCheese 2023-01-13 19:04:11 +03:00
parent 29851c38ef
commit d324fa5820
2 changed files with 8 additions and 6 deletions

View file

@ -24,7 +24,9 @@ namespace overlay {
void OverlayImpl::del_peer(adnl::AdnlNodeIdShort id) {
auto P = peers_.get(id);
CHECK(P != nullptr);
if (P == nullptr) {
return;
}
VLOG(OVERLAY_DEBUG) << this << ": deleting peer " << id;