Merge branch 'cleaning-up-payload-handling' of github.com:prysmaticlabs/prysm into cleaning-up-payload-handling

This commit is contained in:
Raul Jordan
2022-07-18 21:32:56 -04:00

View File

@@ -53,6 +53,7 @@ func main() {
Name: "data-type",
Usage: "ssz file data type: " +
"block|" +
"blinded_block|" +
"signed_block|" +
"attestation|" +
"block_header|" +
@@ -73,6 +74,8 @@ func main() {
data = &ethpb.BeaconBlock{}
case "signed_block":
data = &ethpb.SignedBeaconBlock{}
case "blinded_block":
data = &ethpb.BlindedBeaconBlockBellatrix{}
case "attestation":
data = &ethpb.Attestation{}
case "block_header":