Skip to content

Commit

Permalink
Update weights
Browse files Browse the repository at this point in the history
  • Loading branch information
enddynayn authored and github-actions[bot] committed Jul 26, 2024
1 parent 21a07b5 commit 2f9f0e2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions runtime/common/src/weights/block_weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ parameter_types! {
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
/// Stats nanoseconds:
/// Min, Max: 235_166, 256_667
/// Average: 240_089
/// Median: 237_788
/// Std-Dev: 5106.83
/// Min, Max: 237_698, 260_606
/// Average: 241_909
/// Median: 239_649
/// Std-Dev: 5441.42
///
/// Percentiles nanoseconds:
/// 99th: 254_962
/// 95th: 253_612
/// 75th: 240_539
/// 99th: 260_507
/// 95th: 254_401
/// 75th: 242_002
pub const BlockExecutionWeight: Weight =
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(240_089), 0);
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(241_909), 0);
}

#[cfg(test)]
Expand Down
16 changes: 8 additions & 8 deletions runtime/common/src/weights/extrinsic_weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ parameter_types! {
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
/// Stats nanoseconds:
/// Min, Max: 65_535, 66_652
/// Average: 65_926
/// Median: 65_864
/// Std-Dev: 231.49
/// Min, Max: 63_899, 66_104
/// Average: 64_842
/// Median: 64_786
/// Std-Dev: 417.92
///
/// Percentiles nanoseconds:
/// 99th: 66_567
/// 95th: 66_328
/// 75th: 66_074
/// 99th: 65_857
/// 95th: 65_692
/// 75th: 65_020
pub const ExtrinsicBaseWeight: Weight =
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(65_926), 0);
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(64_842), 0);
}

#[cfg(test)]
Expand Down

0 comments on commit 2f9f0e2

Please sign in to comment.