Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 9b98332

Browse files
committed
fixup! fix: remove debug logging
1 parent 8a0fda8 commit 9b98332

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

celestia.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ func (c *CelestiaDA) GetIDs(height uint64) ([]da.ID, error) {
5454
}
5555
return nil, err
5656
}
57-
for _, blob := range blobs {
58-
// TODO: commitment -> id
59-
ids = append(ids, makeID(height, blob.Commitment))
57+
for _, b := range blobs {
58+
ids = append(ids, makeID(height, b.Commitment))
6059
}
6160
return ids, nil
6261
}

0 commit comments

Comments
 (0)