From 988945bb4b7e3b29bf4bc3f239444414afd0be1d Mon Sep 17 00:00:00 2001 From: Ron Date: Fri, 19 Jan 2024 09:41:08 +0800 Subject: [PATCH 1/2] Update Cargo.lock (#101) --- Cargo.lock | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index b7e0b3585ff7d..f21ad811775ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17464,8 +17464,10 @@ dependencies = [ "frame-support", "frame-system", "log", + "parity-scale-codec", "snowbridge-core", "sp-arithmetic", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", From 4af270f0336c6421c54296138a9d35087ac2fdac Mon Sep 17 00:00:00 2001 From: Ron Date: Fri, 19 Jan 2024 22:04:07 +0800 Subject: [PATCH 2/2] 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 a64d8b26ec61b..b5a14fc34fc05 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 @@ -609,6 +609,10 @@ parameter_types! { version: [3, 0, 0, 1], // 0x03000001 epoch: 0, }, + deneb: Fork { + version: [4, 0, 0, 1], // 0x04000001 + epoch: 0, + } }; } @@ -631,6 +635,10 @@ parameter_types! { version: [144, 0, 0, 114], // 0x90000072 epoch: 56832, }, + deneb: Fork { + version: [144, 0, 0, 115], // 0x90000073 + epoch: 4294967295, + }, }; }