load("@prysm//tools/go:def.bzl", "go_library") load("@io_bazel_rules_go//go:def.bzl", "go_test") go_library( name = "go_default_library", srcs = ["attestation_utils.go"], importpath = "github.com/prysmaticlabs/prysm/shared/attestationutil", visibility = ["//visibility:public"], deps = [ "//beacon-chain/core/helpers:go_default_library", "//shared/bls:go_default_library", "//shared/params:go_default_library", "@com_github_pkg_errors//:go_default_library", "@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library", "@com_github_prysmaticlabs_go_bitfield//:go_default_library", "@io_opencensus_go//trace:go_default_library", ], ) go_test( name = "go_default_test", srcs = ["attestation_utils_test.go"], embed = [":go_default_library"], deps = [ "//shared/params:go_default_library", "@com_github_gogo_protobuf//proto:go_default_library", "@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library", "@com_github_prysmaticlabs_go_bitfield//:go_default_library", ], )