From d79f727949a82d2f11da3d3489da7fab7ff28b11 Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Wed, 21 May 2025 14:28:54 +0200 Subject: [PATCH] Fix Stagenet runtime's chain fork versions (#83) --- operator/runtime/stagenet/src/configs/mod.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/operator/runtime/stagenet/src/configs/mod.rs b/operator/runtime/stagenet/src/configs/mod.rs index dc206c3b..c0222a52 100644 --- a/operator/runtime/stagenet/src/configs/mod.rs +++ b/operator/runtime/stagenet/src/configs/mod.rs @@ -740,28 +740,28 @@ parameter_types! { parameter_types! { pub const ChainForkVersions: ForkVersions = ForkVersions { genesis: Fork { - version: hex_literal::hex!("01017000"), // 0x01017000 + version: [16, 0, 0, 56], // 0x10000038 epoch: 0, }, altair: Fork { - version: hex_literal::hex!("02017000"), // 0x02017000 + version: [32, 0, 0, 56], // 0x20000038 epoch: 0, }, bellatrix: Fork { - version: hex_literal::hex!("03017000"), // 0x03017000 + version: [48, 0, 0, 56], // 0x30000038 epoch: 0, }, capella: Fork { - version: hex_literal::hex!("04017000"), // 0x04017000 - epoch: 256, + version: [64, 0, 0, 56], // 0x40000038 + epoch: 0, }, deneb: Fork { - version: hex_literal::hex!("05017000"), // 0x05017000 - epoch: 29696, + version: [80, 0, 0, 56], // 0x50000038 + epoch: 0, }, electra: Fork { - version: hex_literal::hex!("06017000"), // 0x06017000 - epoch: 115968, + version: [96, 0, 0, 56], // 0x60000038 + epoch: 0, }, }; }