Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Persist ETH1 Information #4305

Merged
merged 12 commits into from
Dec 18, 2019
1 change: 1 addition & 0 deletions beacon-chain/db/kv/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ go_library(
"kv.go",
"migrate_snappy.go",
"operations.go",
"powchain.go",
"prune_states.go",
"schema.go",
"slashings.go",
Expand Down
1 change: 1 addition & 0 deletions beacon-chain/db/kv/powchain.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package kv
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's up with this?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 on this package name, it can be specified in the .proto file

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed it

3 changes: 2 additions & 1 deletion proto/beacon/db/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ proto_library(
srcs = [
"attestation_container.proto",
"finalized_block_root_container.proto",
"powchain.proto",
],
visibility = ["//visibility:public"],
deps = [
Expand Down Expand Up @@ -44,8 +45,8 @@ go_test(
srcs = ["attestation_container_helper_test.go"],
deps = [
":go_default_library",
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
"//shared/bls:go_default_library",
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
],
)
Loading