From 9d939406a1f3d2df67432eb3c5172afde545fa6a Mon Sep 17 00:00:00 2001 From: enddynayn Date: Tue, 30 Jul 2024 15:09:57 +0000 Subject: [PATCH] Update weights --- runtime/common/src/weights/block_weights.rs | 16 ++++++++-------- runtime/common/src/weights/extrinsic_weights.rs | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/runtime/common/src/weights/block_weights.rs b/runtime/common/src/weights/block_weights.rs index ac4474dd75..36e4373520 100644 --- a/runtime/common/src/weights/block_weights.rs +++ b/runtime/common/src/weights/block_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 258_801, 280_558 - /// Average: 262_939 - /// Median: 261_055 - /// Std-Dev: 4849.4 + /// Min, Max: 240_263, 260_853 + /// Average: 245_079 + /// Median: 243_534 + /// Std-Dev: 4690.52 /// /// Percentiles nanoseconds: - /// 99th: 280_006 - /// 95th: 276_093 - /// 75th: 263_890 + /// 99th: 260_552 + /// 95th: 256_706 + /// 75th: 246_329 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(262_939), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(245_079), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/extrinsic_weights.rs b/runtime/common/src/weights/extrinsic_weights.rs index 19b1871208..5f892dc337 100644 --- a/runtime/common/src/weights/extrinsic_weights.rs +++ b/runtime/common/src/weights/extrinsic_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 67_536, 67_959 - /// Average: 67_733 - /// Median: 67_722 - /// Std-Dev: 78.89 + /// Min, Max: 62_949, 64_130 + /// Average: 63_309 + /// Median: 63_277 + /// Std-Dev: 228.35 /// /// Percentiles nanoseconds: - /// 99th: 67_915 - /// 95th: 67_871 - /// 75th: 67_769 + /// 99th: 63_842 + /// 95th: 63_716 + /// 75th: 63_452 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(67_733), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(63_309), 0); } #[cfg(test)]