mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
b07a3c3bb8
* Update deposit Contarct * updating deposit trie * add verifyMerkleBranch * fix test * fixed all tests * fix other tests * fixing a test * All tests are fixed * lint * fix lint
20 lines
536 B
Python
20 lines
536 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["deposit_trie.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/trieutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/hashutil:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["deposit_trie_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//shared/hashutil:go_default_library"],
|
|
)
|