fix: Update testing ChainForkVersions (#167)

This commit is contained in:
Ahmad Kaouk 2025-09-16 23:27:38 +02:00 committed by GitHub
parent 60d0e2c901
commit 583732ee07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 20 additions and 19 deletions

3
.gitignore vendored
View file

@ -24,4 +24,5 @@ tmp/*
**/.DS_Store
.worktrees/
.claude/
.claude/
Agents.md

View file

@ -1012,27 +1012,27 @@ impl snowbridge_pallet_system_v2::Config for Runtime {
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
version: [0, 0, 0, 0], // 0x00000000
version: hex_literal::hex!("10000038"),
epoch: 0,
},
altair: Fork {
version: [1, 0, 0, 0], // 0x01000000
version: hex_literal::hex!("20000038"),
epoch: 0,
},
bellatrix: Fork {
version: [2, 0, 0, 0], // 0x02000000
version: hex_literal::hex!("30000038"),
epoch: 0,
},
capella: Fork {
version: [3, 0, 0, 0], // 0x03000000
version: hex_literal::hex!("40000038"),
epoch: 0,
},
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
version: hex_literal::hex!("50000038"),
epoch: 0,
},
electra: Fork {
version: [5, 0, 0, 0], // 0x05000000
version: hex_literal::hex!("60000038"),
epoch: 0,
},
};

View file

@ -1011,27 +1011,27 @@ impl snowbridge_pallet_system_v2::Config for Runtime {
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
version: [0, 0, 0, 0], // 0x00000000
version: hex_literal::hex!("10000038"),
epoch: 0,
},
altair: Fork {
version: [1, 0, 0, 0], // 0x01000000
version: hex_literal::hex!("20000038"),
epoch: 0,
},
bellatrix: Fork {
version: [2, 0, 0, 0], // 0x02000000
version: hex_literal::hex!("30000038"),
epoch: 0,
},
capella: Fork {
version: [3, 0, 0, 0], // 0x03000000
version: hex_literal::hex!("40000038"),
epoch: 0,
},
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
version: hex_literal::hex!("50000038"),
epoch: 0,
},
electra: Fork {
version: [5, 0, 0, 0], // 0x05000000
version: hex_literal::hex!("60000038"),
epoch: 0,
},
};

View file

@ -1011,27 +1011,27 @@ impl snowbridge_pallet_system_v2::Config for Runtime {
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
version: [0, 0, 0, 0], // 0x00000000
version: hex_literal::hex!("10000038"),
epoch: 0,
},
altair: Fork {
version: [1, 0, 0, 0], // 0x01000000
version: hex_literal::hex!("20000038"),
epoch: 0,
},
bellatrix: Fork {
version: [2, 0, 0, 0], // 0x02000000
version: hex_literal::hex!("30000038"),
epoch: 0,
},
capella: Fork {
version: [3, 0, 0, 0], // 0x03000000
version: hex_literal::hex!("40000038"),
epoch: 0,
},
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
version: hex_literal::hex!("50000038"),
epoch: 0,
},
electra: Fork {
version: [5, 0, 0, 0], // 0x05000000
version: hex_literal::hex!("60000038"),
epoch: 0,
},
};

Binary file not shown.