load("@prysm//tools/go:def.bzl", "go_library", "go_test") go_library( name = "go_default_library", srcs = [ "log.go", "p2p.go", "powchain.go", ], importpath = "github.com/prysmaticlabs/prysm/beacon-chain/node/registration", visibility = ["//beacon-chain/node:__subpackages__"], deps = [ "//cmd:go_default_library", "//cmd/beacon-chain/flags:go_default_library", "//config/params:go_default_library", "@com_github_ethereum_go_ethereum//common:go_default_library", "@com_github_sirupsen_logrus//:go_default_library", "@com_github_urfave_cli_v2//:go_default_library", "@in_gopkg_yaml_v2//:go_default_library", ], ) go_test( name = "go_default_test", srcs = [ "p2p_test.go", "powchain_test.go", ], embed = [":go_default_library"], deps = [ "//cmd:go_default_library", "//cmd/beacon-chain/flags:go_default_library", "//config/params:go_default_library", "//testing/assert:go_default_library", "//testing/require:go_default_library", "@com_github_sirupsen_logrus//hooks/test:go_default_library", "@com_github_urfave_cli_v2//:go_default_library", ], )