2018-07-07 17:23:19 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
2018-07-17 18:39:04 +00:00
|
|
|
srcs = ["convert_transaction.go"],
|
|
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/shared/legacyutil",
|
|
|
|
visibility = ["//visibility:public"],
|
2018-07-13 16:47:57 +00:00
|
|
|
deps = [
|
2018-07-17 18:39:04 +00:00
|
|
|
"//proto/sharding/v1:go_default_library",
|
2018-07-13 16:47:57 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
|
|
|
],
|
2018-07-07 17:23:19 +00:00
|
|
|
)
|