mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
b07a3c3bb8
* Update deposit Contarct * updating deposit trie * add verifyMerkleBranch * fix test * fixed all tests * fix other tests * fixing a test * All tests are fixed * lint * fix lint
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"ETH1logs.go",
|
|
"depositContract.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/contracts/deposit-contract",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["depositContract_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/hashutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//core:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
],
|
|
)
|