From 96642c3155847aff751cc7b75c1a6d48e64a6f76 Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Thu, 26 Oct 2023 12:17:54 +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 9d5b1777..828e98e6 100644 --- a/p2p/dht.go +++ b/p2p/dht.go @@ -102,7 +102,7 @@ func (q BlobstreamDHT) WaitForPeers(ctx context.Context, timeout time.Duration, // and valset confirms. The checks are supposed to be handled by the validators under `p2p/validators.go`. // Same goes for the Marshal and Unmarshal methods (as long as they're using simple Json encoding). -// PutDataCommitmentConfirm encodes a data commitment confirm then puts its values to the DHT. +// PutDataCommitmentConfirm encodes a data commitment confirm then puts its value to the DHT. // The key can be generated using the `GetDataCommitmentConfirmKey` method. // Returns an error if it fails to do so. func (q BlobstreamDHT) PutDataCommitmentConfirm(ctx context.Context, key string, dcc types.DataCommitmentConfirm) error {