mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
7042791e31
* fuzz: Fix off by one error in sparse merkle trie item insertion * remove new line * Move validation to the proto constructor * fix build * Add a unit test because @nisdas is going to ask for it * fix up * gaz * Update container/trie/sparse_merkle.go * Update container/trie/sparse_merkle_test.go Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: nisdas <nishdas93@gmail.com>
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"sparse_merkle.go",
|
|
"zerohashes.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/container/trie",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//crypto/hash:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//math:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"sparse_merkle_test.go",
|
|
"sparse_merkle_trie_fuzz_test.go",
|
|
],
|
|
data = glob(["testdata/**"]),
|
|
deps = [
|
|
":go_default_library",
|
|
"//config/fieldparams:go_default_library",
|
|
"//config/params:go_default_library",
|
|
"//contracts/deposit/mock:go_default_library",
|
|
"//crypto/hash:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
"@com_github_golang_protobuf//proto:go_default_library",
|
|
],
|
|
)
|