mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-23 17:28:23 +00:00
fix: Update testing ChainForkVersions (#167)
This commit is contained in:
parent
60d0e2c901
commit
583732ee07
5 changed files with 20 additions and 19 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -24,4 +24,5 @@ tmp/*
|
|||
**/.DS_Store
|
||||
|
||||
.worktrees/
|
||||
.claude/
|
||||
.claude/
|
||||
Agents.md
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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.
Loading…
Reference in a new issue