mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
84916672c6
* replace eth2 types * replace protos * regen proto * replace * gaz * deps * amend * regen proto * mod * gaz * gaz * ensure build * ssz * add dep * no more eth2 types * no more eth2 * remg * all builds * buidl * tidy * clean * fmt * val serv * gaz Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
20 lines
508 B
Python
20 lines
508 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["math_helper.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/math",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_thomaso_mirodin_intmath//u64:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["math_helper_test.go"],
|
|
deps = [
|
|
":go_default_library",
|
|
"//testing/require:go_default_library",
|
|
],
|
|
)
|