prysm-pulse/shared/bytes/BUILD.bazel
terence tsao 4c6565d419 Integers to Bytes Helper Methods (#734)
* Change validator functions done

* implemented helper methods to convert int to bytes

* use them across prysm

* bazel gazelle

* forgot build.bazel
2018-11-08 11:52:51 -05:00

15 lines
352 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["bytes.go"],
importpath = "github.com/prysmaticlabs/prysm/shared/bytes",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["bytes_test.go"],
embed = [":go_default_library"],
)