From c4d4b536445b0635c88fc52348464c776cdc2bc3 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 3 Jun 2021 14:54:46 +0200 Subject: [PATCH] kad-dht/README: Seed with k instead of alpha peers --- kad-dht/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kad-dht/README.md b/kad-dht/README.md index 94c28d006..c57e9e872 100644 --- a/kad-dht/README.md +++ b/kad-dht/README.md @@ -107,7 +107,7 @@ iterative network search. We keep track of the set of peers we've already queried (`Pq`) and the set of next query candidates sorted by distance from `Key` in ascending order (`Pn`). -At initialization `Pn` is seeded with the `α` peers from our routing table we +At initialization `Pn` is seeded with the `k` peers from our routing table we know are closest to `Key`, based on the XOR distance function (see [distance definition](#distance)).