Skip to content

Commit

Permalink
Merge pull request #134 from paseo-network/fix-fork-versions
Browse files Browse the repository at this point in the history
Fix Snowbridge fork versions
  • Loading branch information
hbulgarini authored Sep 26, 2024
2 parents 9401677 + 99190cf commit 08bbfd8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,24 @@ impl snowbridge_pallet_outbound_queue::Config for Runtime {
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
version: [0, 0, 0, 0], // 0x00000000
version: [144, 0, 0, 111], // 0x90000069
epoch: 0,
},
altair: Fork {
version: [1, 0, 0, 0], // 0x01000000
epoch: 74240,
version: [144, 0, 0, 112], // 0x90000070
epoch: 50,
},
bellatrix: Fork {
version: [2, 0, 0, 0], // 0x02000000
epoch: 144896,
version: [144, 0, 0, 113], // 0x90000071
epoch: 100,
},
capella: Fork {
version: [3, 0, 0, 0], // 0x03000000
epoch: 194048,
version: [144, 0, 0, 114], // 0x90000072
epoch: 56832,
},
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
epoch: 269568,
version: [144, 0, 0, 115], // 0x90000073
epoch: 132608,
},
};
}
Expand Down
2 changes: 1 addition & 1 deletion system-parachains/bridge-hub-paseo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("bridge-hub-paseo"),
impl_name: create_runtime_str!("bridge-hub-paseo"),
authoring_version: 1,
spec_version: 1_002_008,
spec_version: 1_002_009,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 4,
Expand Down

0 comments on commit 08bbfd8

Please sign in to comment.