mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
1e862511aa
* adding deposit contract * Adding bindings * remove unused info * shifting deploy function over * new changes * fixing tests and moving log utils to contract package * new changes,helpers, fixing tests * fix failing test * readme * contract change * changes to contract * new changes,helpers, fixing tests * missing files * adding constructor to contract * lint * updating with spec * finally got it fixed * add in deposit arguments * new changes * all tests pass * addresing raul's and terence's comments * remove vrc
34 lines
912 B
Python
34 lines
912 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"block_vote_cache.go",
|
|
"clock.go",
|
|
"flags.go",
|
|
"shuffle.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/utils",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//shared/hashutil:go_default_library",
|
|
"//shared/params: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",
|
|
],
|
|
)
|