We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9943697 commit faeacf6Copy full SHA for faeacf6
libp2p/peer/peerstore.py
@@ -217,10 +217,6 @@ def peers_with_addrs(self) -> list[ID]:
217
peer_data.clear_addrs()
218
return output
219
220
- def addr_stream(self, peer_id: ID) -> None:
221
- """addr_stream"""
222
- # TODO!
223
-
224
# -------KEY-BOOK---------
225
226
def add_pubkey(self, peer_id: ID, pubkey: PublicKey) -> None:
@@ -292,7 +288,7 @@ def peer_with_keys(self) -> list[ID]:
292
288
]
293
289
294
290
def clear_keydata(self, peer_id: ID) -> None:
295
- """Clears all the keys of the peer"""
291
+ """Clears the keys of the peer"""
296
peer_data = self.peer_data_map[peer_id]
297
peer_data.clear_keydata()
298
0 commit comments