From 2922db02c8e3fbcd1de2f8cfeb94647a9d4a419e Mon Sep 17 00:00:00 2001 From: Ron Date: Fri, 19 Jan 2024 22:04:07 +0800 Subject: [PATCH] Dencun (#102) * ForkVersions for Deneb * Enable deneb from genesis --- .../runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs index 4a3ef8ac4e8c..ec3359c4da88 100644 --- a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs +++ b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs @@ -611,6 +611,10 @@ parameter_types! { version: [3, 0, 0, 1], // 0x03000001 epoch: 0, }, + deneb: Fork { + version: [4, 0, 0, 1], // 0x04000001 + epoch: 0, + } }; } @@ -633,6 +637,10 @@ parameter_types! { version: [144, 0, 0, 114], // 0x90000072 epoch: 56832, }, + deneb: Fork { + version: [144, 0, 0, 115], // 0x90000073 + epoch: 4294967295, + }, }; }