From 479cab4d9d510aad27437e532f5a8b4abc05c6b0 Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Thu, 26 Oct 2023 12:18:16 +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 0224d24c..a5a884a9 100644 --- a/p2p/dht.go +++ b/p2p/dht.go @@ -165,7 +165,7 @@ func (q BlobstreamDHT) GetValsetConfirm(ctx context.Context, key string) (types. // 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. +// Returns an error if it fails. func (q BlobstreamDHT) PutLatestValset(ctx context.Context, v types2.Valset) error { encodedData, err := types.MarshalValset(v) if err != nil {