Rename Merge to Bellatrix (#5601)

* Rename Merge to Bellatrix

* Remove tree-hash-cache which got readded from the rebase
This commit is contained in:
Mac L
2024-04-26 06:19:41 +10:00
committed by GitHub
parent 320345695d
commit 13f94ef0f3
104 changed files with 808 additions and 714 deletions

View File

@@ -70,9 +70,11 @@ pub fn run_parse_ssz<E: EthSpec>(
"SignedBeaconBlockAltair" => {
decode_and_print(&bytes, SignedBeaconBlockAltair::<E>::from_ssz_bytes, format)?
}
"SignedBeaconBlockMerge" | "SignedBeaconBlockBellatrix" => {
decode_and_print(&bytes, SignedBeaconBlockMerge::<E>::from_ssz_bytes, format)?
}
"SignedBeaconBlockBellatrix" => decode_and_print(
&bytes,
SignedBeaconBlockBellatrix::<E>::from_ssz_bytes,
format,
)?,
"SignedBeaconBlockCapella" => decode_and_print(
&bytes,
SignedBeaconBlockCapella::<E>::from_ssz_bytes,
@@ -97,8 +99,8 @@ pub fn run_parse_ssz<E: EthSpec>(
"BeaconStateAltair" => {
decode_and_print(&bytes, BeaconStateAltair::<E>::from_ssz_bytes, format)?
}
"BeaconStateMerge" | "BeaconStateBellatrix" => {
decode_and_print(&bytes, BeaconStateMerge::<E>::from_ssz_bytes, format)?
"BeaconStateBellatrix" => {
decode_and_print(&bytes, BeaconStateBellatrix::<E>::from_ssz_bytes, format)?
}
"BeaconStateCapella" => {
decode_and_print(&bytes, BeaconStateCapella::<E>::from_ssz_bytes, format)?