File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ go_library(
9
9
"p2p_interface.go" ,
10
10
"peer_sampling.go" ,
11
11
"reconstruction.go" ,
12
+ "util.go" ,
12
13
],
13
14
importpath = "github.com/prysmaticlabs/prysm/v5/beacon-chain/core/peerdas" ,
14
15
visibility = ["//visibility:public" ],
@@ -24,6 +25,7 @@ go_library(
24
25
"//crypto/hash:go_default_library" ,
25
26
"//encoding/bytesutil:go_default_library" ,
26
27
"//proto/prysm/v1alpha1:go_default_library" ,
28
+ "//runtime/version:go_default_library" ,
27
29
"@com_github_ethereum_go_ethereum//p2p/enode:go_default_library" ,
28
30
"@com_github_ethereum_go_ethereum//p2p/enr:go_default_library" ,
29
31
"@com_github_hashicorp_golang_lru//:go_default_library" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ go_library(
17
17
"//api/server:go_default_library" ,
18
18
"//api/server/structs:go_default_library" ,
19
19
"//beacon-chain/blockchain:go_default_library" ,
20
+ "//beacon-chain/blockchain/kzg:go_default_library" ,
20
21
"//beacon-chain/cache:go_default_library" ,
21
22
"//beacon-chain/cache/depositsnapshot:go_default_library" ,
22
23
"//beacon-chain/core/altair:go_default_library" ,
Original file line number Diff line number Diff line change @@ -174,7 +174,6 @@ func GenerateTestFuluBlockWithSidecar(
174
174
func GenerateCellsAndProofs (t * testing.T , blobs []kzg.Blob ) []kzg.CellsAndProofs {
175
175
cellsAndProofs := make ([]kzg.CellsAndProofs , len (blobs ))
176
176
for i , blob := range blobs {
177
- blob := blob
178
177
cp , err := kzg .ComputeCellsAndKZGProofs (& blob )
179
178
require .NoError (t , err )
180
179
cellsAndProofs [i ] = cp
You can’t perform that action at this time.
0 commit comments