mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
8c2fff3a75
* advanced functionality, enable 25th word mnemonic passphrase * 25th word passphrase * add test * added test to ensure differences when using the mnemonic 25th word * better message * passing tests * fix up logic
17 lines
441 B
Python
17 lines
441 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = 1,
|
|
srcs = ["mock.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/accounts/testing",
|
|
visibility = [
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//validator/accounts/iface:go_default_library",
|
|
"//validator/keymanager:go_default_library",
|
|
],
|
|
)
|