Skip to content

Commit 4d3360a

Browse files
committed
Update
1 parent 016d0fc commit 4d3360a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

beacon-chain/core/peerdas/BUILD.bazel

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ go_library(
99
"p2p_interface.go",
1010
"peer_sampling.go",
1111
"reconstruction.go",
12+
"util.go",
1213
],
1314
importpath = "github.com/prysmaticlabs/prysm/v5/beacon-chain/core/peerdas",
1415
visibility = ["//visibility:public"],
@@ -24,6 +25,7 @@ go_library(
2425
"//crypto/hash:go_default_library",
2526
"//encoding/bytesutil:go_default_library",
2627
"//proto/prysm/v1alpha1:go_default_library",
28+
"//runtime/version:go_default_library",
2729
"@com_github_ethereum_go_ethereum//p2p/enode:go_default_library",
2830
"@com_github_ethereum_go_ethereum//p2p/enr:go_default_library",
2931
"@com_github_hashicorp_golang_lru//:go_default_library",

beacon-chain/rpc/eth/beacon/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ go_library(
1717
"//api/server:go_default_library",
1818
"//api/server/structs:go_default_library",
1919
"//beacon-chain/blockchain:go_default_library",
20+
"//beacon-chain/blockchain/kzg:go_default_library",
2021
"//beacon-chain/cache:go_default_library",
2122
"//beacon-chain/cache/depositsnapshot:go_default_library",
2223
"//beacon-chain/core/altair:go_default_library",

testing/util/fulu.go

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ func GenerateTestFuluBlockWithSidecar(
174174
func GenerateCellsAndProofs(t *testing.T, blobs []kzg.Blob) []kzg.CellsAndProofs {
175175
cellsAndProofs := make([]kzg.CellsAndProofs, len(blobs))
176176
for i, blob := range blobs {
177-
blob := blob
178177
cp, err := kzg.ComputeCellsAndKZGProofs(&blob)
179178
require.NoError(t, err)
180179
cellsAndProofs[i] = cp

0 commit comments

Comments
 (0)