mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
4df74a3b9d
* first iteration * with initial tests * comment fix * fix lint * Start fixing other tests * Cleanup * Finish att slashing tests * Finish up tests for proposer * Fix docs * Fix tests * Fix pending att slashings to not include duplicates * Fix max list * Add test to make sure no duplicate slashings * Address comments, improve insertion * Fix error * Update beacon-chain/operations/slashings/service.go * Update beacon-chain/operations/slashings/service.go * Update beacon-chain/operations/slashings/service.go * Update beacon-chain/operations/slashings/service.go * include a helper function for deduplication, fix some comments Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"doc.go",
|
|
"service.go",
|
|
"types.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/operations/slashings",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/core/helpers:go_default_library",
|
|
"//beacon-chain/state:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"//shared/sliceutil:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"service_attester_test.go",
|
|
"service_proposer_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//beacon-chain/state:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|