From bc15575ace5bf470605f9e72d22d2b447e290e5f Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Thu, 26 Oct 2023 12:18:11 +0200 Subject: [PATCH] Update p2p/dht.go --- p2p/dht.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/dht.go b/p2p/dht.go index e5cf179c..0224d24c 100644 --- a/p2p/dht.go +++ b/p2p/dht.go @@ -162,7 +162,7 @@ func (q BlobstreamDHT) GetValsetConfirm(ctx context.Context, key string) (types. return confirm, nil } -// PutLatestValset encodes a valset then puts its values to the DHT. +// PutLatestValset encodes a valset then puts its value to the DHT. // The key will be returned by the `GetValsetKey` method. // If the valset is not the latest, it will fail. // Returns an error if it fails to do so.