perf(net): emit all discovred nodes (#1414)

This commit is contained in:
Matthias Seitz
2023-02-16 21:07:27 +01:00
committed by GitHub
parent db4c4fb8d1
commit 6005ecb89a
2 changed files with 25 additions and 7 deletions

View File

@ -156,6 +156,9 @@ impl Discovery {
self.on_discv4_update(update);
}
}
DiscoveryUpdate::DiscoveredAtCapacity(record) => {
self.on_node_record_update(record, None);
}
}
}