From 4538294d1704417d0b80273e6437ba1de5548e8a Mon Sep 17 00:00:00 2001 From: Sergei Shulepov Date: Tue, 20 Feb 2024 19:50:33 +0700 Subject: [PATCH] docs: update DA.GetProofs doc (#45) --- da.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/da.go b/da.go index 1a82048..b33dfc3 100644 --- a/da.go +++ b/da.go @@ -16,7 +16,7 @@ type DA interface { // GetIDs returns IDs of all Blobs located in DA at given height. GetIDs(ctx context.Context, height uint64, namespace Namespace) ([]ID, error) - // GetProofs returns inclusion Proofs for all Blobs located in DA at given height. + // GetProofs returns inclusion Proofs for Blobs specified by their IDs. GetProofs(ctx context.Context, ids []ID, namespace Namespace) ([]Proof, error) // Commit creates a Commitment for each given Blob.