Skip to content

Commit db3d8af

Browse files
committed
feature(kreivo-runtime): Return to expecting a production velocity of 12 blocks per slot (500ms).
1 parent b2c15cc commit db3d8af

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chain-spec-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage.workspace = true
66
license.workspace = true
77
name = "chain-spec-generator"
88
repository.workspace = true
9-
version = "0.16.8"
9+
version = "0.16.9"
1010

1111
[dependencies]
1212
clap = { workspace = true, features = ["derive"] }

runtime/kreivo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage.workspace = true
66
license.workspace = true
77
name = "kreivo-runtime"
88
repository.workspace = true
9-
version = "0.16.8"
9+
version = "0.16.9"
1010

1111
[package.metadata.docs.rs]
1212
targets = ["x86_64-unknown-linux-gnu"]

runtime/kreivo/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
168168
spec_name: Borrowed("kreivo-parachain"),
169169
impl_name: Borrowed("kreivo-parachain"),
170170
authoring_version: 1,
171-
spec_version: 131,
171+
spec_version: 132,
172172
impl_version: 0,
173173
apis: RUNTIME_API_VERSIONS,
174174
transaction_version: 12,

runtime/runtime-constants/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub mod async_backing_params {
7070
#[cfg(feature = "paseo")]
7171
pub const BLOCK_PROCESSING_VELOCITY: u32 = 3;
7272
#[cfg(not(feature = "paseo"))]
73-
pub const BLOCK_PROCESSING_VELOCITY: u32 = 6;
73+
pub const BLOCK_PROCESSING_VELOCITY: u32 = 12;
7474
/// Relay chain slot duration, in milliseconds.
7575
pub const RELAY_CHAIN_SLOT_DURATION_MILLIS: Moment = 6_000;
7676
}

0 commit comments

Comments
 (0)