Skip to content

Commit

Permalink
Fix CI in PeerDAS (#14347)
Browse files Browse the repository at this point in the history
* Update go.yml

* Disable mnd

* Update .golangci.yml

* Update go.yml

* Update go.yml

* Update .golangci.yml

* Update go.yml

* Fix Lint Issues

* Remove comment

* Update .golangci.yml
  • Loading branch information
nisdas authored and nalepae committed Nov 25, 2024
1 parent 2a4f748 commit 326a6c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon-chain/core/peerdas/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func populateAndFilterIndices(indices map[uint64]bool, blobCount uint64) []uint6
// If no indices are provided, provide all blobs.
if len(indices) == 0 {
for i := range blobCount {
indices[uint64(i)] = true
indices[i] = true
}
}

Expand Down Expand Up @@ -317,7 +317,7 @@ func Blobs(indices map[uint64]bool, dataColumnsSidecar []*ethpb.DataColumnSideca
}

blobSidecar := &ethpb.BlobSidecar{
Index: uint64(blobIndex),
Index: blobIndex,
Blob: blob[:],
KzgCommitment: blobKZGCommitment[:],
KzgProof: blobKzgProof[:],
Expand Down

0 comments on commit 326a6c2

Please sign in to comment.