mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
08a06458d9
* changing handling of logs * gazelle * removing outdated vars * fixing tests * adding vrc bindings to service * updating vrc sol and bindings * more changes * adding trie * remove functions * addressing preston's review * tests * gazelle * fixed tests * note * Lint * doc * exploration test * adding new methods and tests * adding log type checker * lint * Adding processChainstartLog * gazelle * addressing comments * addressing comments and adding tests * review comments * comment * comment * abi naming
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"POWlogs.go",
|
|
"block_vote_cache.go",
|
|
"clock.go",
|
|
"flags.go",
|
|
"shuffle.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/utils",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//contracts/validator-registration-contract:go_default_library",
|
|
"//shared/hashutil:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_urfave_cli//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"block_vote_cache_test.go",
|
|
"clock_test.go",
|
|
"shuffle_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
],
|
|
)
|