Migrate to Weight::from_parts (#6794)

* Migrate to from_parts

Have a look at https://github.com/ggwpez/substrate-scripts/blob/master/migrate-from-parts.py

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Adapt to master

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* update lockfile for {"substrate"}

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: parity-processbot <>
This commit is contained in:
Oliver Tale-Yazdi
2023-03-03 00:32:30 +01:00
committed by GitHub
parent c5637bda91
commit 177bedc160
187 changed files with 4080 additions and 4088 deletions
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_551_903 nanoseconds.
Weight::from_ref_time(6_570_398_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_570_398_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 143_968
.saturating_add(Weight::from_ref_time(6_021_286).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(6_021_286, 0).saturating_mul(v.into()))
// Standard Error: 14_718_857
.saturating_add(Weight::from_ref_time(1_574_587_516).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(1_574_587_516, 0).saturating_mul(d.into()))
}
/// The range of component `v` is `[1000, 2000]`.
/// The range of component `t` is `[500, 1000]`.
@@ -68,11 +68,11 @@ impl<T: frame_system::Config> frame_election_provider_support::WeightInfo for We
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_050_990 nanoseconds.
Weight::from_ref_time(5_084_143_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(5_084_143_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 151_814
.saturating_add(Weight::from_ref_time(5_869_433).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(5_869_433, 0).saturating_mul(v.into()))
// Standard Error: 15_521_006
.saturating_add(Weight::from_ref_time(1_798_999_843).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(1_798_999_843, 0).saturating_mul(d.into()))
}
}
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_675 nanoseconds.
Weight::from_ref_time(1_706_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_706_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0
.saturating_add(Weight::from_ref_time(368).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(368, 0).saturating_mul(b.into()))
}
/// The range of component `b` is `[0, 3932160]`.
fn remark_with_event(b: u32, ) -> Weight {
@@ -62,10 +62,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 7_568 nanoseconds.
Weight::from_ref_time(7_764_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(7_764_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2
.saturating_add(Weight::from_ref_time(1_742).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(1_742, 0).saturating_mul(b.into()))
}
/// Storage: System Digest (r:1 w:1)
/// Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured)
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `495`
// Minimum execution time: 3_919 nanoseconds.
Weight::from_ref_time(4_109_000)
.saturating_add(Weight::from_proof_size(495))
Weight::from_parts(4_109_000, 0)
.saturating_add(Weight::from_parts(0, 495))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_817 nanoseconds.
Weight::from_ref_time(1_883_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_883_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_018
.saturating_add(Weight::from_ref_time(671_252).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(671_252, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
}
/// Storage: Skipped Metadata (r:0 w:0)
@@ -103,10 +103,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_856 nanoseconds.
Weight::from_ref_time(1_924_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_924_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 760
.saturating_add(Weight::from_ref_time(487_035).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(487_035, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
}
/// Storage: Skipped Metadata (r:0 w:0)
@@ -117,12 +117,12 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `132 + p * (69 ±0)`
// Estimated: `105 + p * (70 ±0)`
// Minimum execution time: 3_689 nanoseconds.
Weight::from_ref_time(3_811_000)
.saturating_add(Weight::from_proof_size(105))
Weight::from_parts(3_811_000, 0)
.saturating_add(Weight::from_parts(0, 105))
// Standard Error: 975
.saturating_add(Weight::from_ref_time(1_001_061).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(1_001_061, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
.saturating_add(Weight::from_proof_size(70).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into()))
}
}
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1848`
// Estimated: `19186`
// Minimum execution time: 59_887 nanoseconds.
Weight::from_ref_time(60_724_000)
.saturating_add(Weight::from_proof_size(19186))
Weight::from_parts(60_724_000, 0)
.saturating_add(Weight::from_parts(0, 19186))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `1742`
// Estimated: `19114`
// Minimum execution time: 58_432 nanoseconds.
Weight::from_ref_time(58_798_000)
.saturating_add(Weight::from_proof_size(19114))
Weight::from_parts(58_798_000, 0)
.saturating_add(Weight::from_parts(0, 19114))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -96,8 +96,8 @@ impl<T: frame_system::Config> pallet_bags_list::WeightInfo for WeightInfo<T> {
// Measured: `2085`
// Estimated: `25798`
// Minimum execution time: 64_755 nanoseconds.
Weight::from_ref_time(66_216_000)
.saturating_add(Weight::from_proof_size(25798))
Weight::from_parts(66_216_000, 0)
.saturating_add(Weight::from_parts(0, 25798))
.saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(6))
}
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1741`
// Estimated: `2603`
// Minimum execution time: 51_250 nanoseconds.
Weight::from_ref_time(51_736_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(51_736_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -64,8 +64,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1558`
// Estimated: `2603`
// Minimum execution time: 39_169 nanoseconds.
Weight::from_ref_time(39_913_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(39_913_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1775`
// Estimated: `2603`
// Minimum execution time: 28_148 nanoseconds.
Weight::from_ref_time(28_912_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(28_912_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1775`
// Estimated: `2603`
// Minimum execution time: 32_281 nanoseconds.
Weight::from_ref_time(32_957_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(32_957_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -100,8 +100,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1737`
// Estimated: `5206`
// Minimum execution time: 51_442 nanoseconds.
Weight::from_ref_time(51_824_000)
.saturating_add(Weight::from_proof_size(5206))
Weight::from_parts(51_824_000, 0)
.saturating_add(Weight::from_parts(0, 5206))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1558`
// Estimated: `2603`
// Minimum execution time: 45_698 nanoseconds.
Weight::from_ref_time(46_221_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(46_221_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -124,8 +124,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1592`
// Estimated: `2603`
// Minimum execution time: 25_042 nanoseconds.
Weight::from_ref_time(25_410_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(25_410_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `919`
// Estimated: `6908`
// Minimum execution time: 17_448 nanoseconds.
Weight::from_ref_time(17_974_000)
.saturating_add(Weight::from_proof_size(6908))
Weight::from_parts(17_974_000, 0)
.saturating_add(Weight::from_parts(0, 6908))
.saturating_add(T::DbWeight::get().reads(8))
}
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
@@ -79,8 +79,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `6`
// Estimated: `1002`
// Minimum execution time: 11_902 nanoseconds.
Weight::from_ref_time(12_229_000)
.saturating_add(Weight::from_proof_size(1002))
Weight::from_parts(12_229_000, 0)
.saturating_add(Weight::from_parts(0, 1002))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -93,8 +93,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `6`
// Estimated: `1002`
// Minimum execution time: 13_259 nanoseconds.
Weight::from_ref_time(13_588_000)
.saturating_add(Weight::from_proof_size(1002))
Weight::from_parts(13_588_000, 0)
.saturating_add(Weight::from_parts(0, 1002))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -107,8 +107,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206`
// Estimated: `2809`
// Minimum execution time: 25_278 nanoseconds.
Weight::from_ref_time(25_491_000)
.saturating_add(Weight::from_proof_size(2809))
Weight::from_parts(25_491_000, 0)
.saturating_add(Weight::from_parts(0, 2809))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `206`
// Estimated: `2603`
// Minimum execution time: 17_235 nanoseconds.
Weight::from_ref_time(17_897_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(17_897_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -137,10 +137,10 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 469_631 nanoseconds.
Weight::from_ref_time(482_168_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(482_168_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_574
.saturating_add(Weight::from_ref_time(277_913).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(277_913, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(3))
}
/// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
@@ -170,16 +170,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `259 + a * (768 ±0) + d * (48 ±0)`
// Estimated: `9102 + a * (6912 ±0) + d * (441 ±0)`
// Minimum execution time: 286_476 nanoseconds.
Weight::from_ref_time(75_074_488)
.saturating_add(Weight::from_proof_size(9102))
Weight::from_parts(75_074_488, 0)
.saturating_add(Weight::from_parts(0, 9102))
// Standard Error: 4_060
.saturating_add(Weight::from_ref_time(349_006).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(349_006, 0).saturating_mul(a.into()))
// Standard Error: 6_085
.saturating_add(Weight::from_ref_time(131_457).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(131_457, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(9))
.saturating_add(Weight::from_proof_size(6912).saturating_mul(a.into()))
.saturating_add(Weight::from_proof_size(441).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(0, 6912).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(0, 441).saturating_mul(d.into()))
}
/// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase CurrentPhase (max_values: Some(1), max_size: None, mode: Measured)
@@ -198,8 +198,8 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `7400`
// Estimated: `39491`
// Minimum execution time: 51_857 nanoseconds.
Weight::from_ref_time(52_335_000)
.saturating_add(Weight::from_proof_size(39491))
Weight::from_parts(52_335_000, 0)
.saturating_add(Weight::from_parts(0, 39491))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -226,16 +226,16 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `142 + v * (553 ±0) + t * (32 ±0)`
// Estimated: `4459 + v * (3871 ±0) + t * (224 ±0)`
// Minimum execution time: 5_318_645 nanoseconds.
Weight::from_ref_time(5_344_057_000)
.saturating_add(Weight::from_proof_size(4459))
Weight::from_parts(5_344_057_000, 0)
.saturating_add(Weight::from_parts(0, 4459))
// Standard Error: 16_918
.saturating_add(Weight::from_ref_time(74_831).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(74_831, 0).saturating_mul(v.into()))
// Standard Error: 50_136
.saturating_add(Weight::from_ref_time(5_004_341).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(5_004_341, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(3871).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(224).saturating_mul(t.into()))
.saturating_add(Weight::from_parts(0, 3871).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 224).saturating_mul(t.into()))
}
/// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
/// Proof Skipped: ElectionProviderMultiPhase Round (max_values: Some(1), max_size: None, mode: Measured)
@@ -254,14 +254,14 @@ impl<T: frame_system::Config> pallet_election_provider_multi_phase::WeightInfo f
// Measured: `117 + v * (553 ±0) + t * (32 ±0)`
// Estimated: `2448 + v * (2212 ±0) + t * (128 ±0)`
// Minimum execution time: 4_570_612 nanoseconds.
Weight::from_ref_time(4_595_904_000)
.saturating_add(Weight::from_proof_size(2448))
Weight::from_parts(4_595_904_000, 0)
.saturating_add(Weight::from_parts(0, 2448))
// Standard Error: 13_748
.saturating_add(Weight::from_ref_time(157_036).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(157_036, 0).saturating_mul(v.into()))
// Standard Error: 40_743
.saturating_add(Weight::from_ref_time(3_886_610).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(3_886_610, 0).saturating_mul(a.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(Weight::from_proof_size(2212).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(128).saturating_mul(t.into()))
.saturating_add(Weight::from_parts(0, 2212).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 128).saturating_mul(t.into()))
}
}
@@ -79,15 +79,15 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1160 + b * (376 ±0)`
// Estimated: `8345 + b * (17706 ±0)`
// Minimum execution time: 76_955 nanoseconds.
Weight::from_ref_time(51_550_896)
.saturating_add(Weight::from_proof_size(8345))
Weight::from_parts(51_550_896, 0)
.saturating_add(Weight::from_parts(0, 8345))
// Standard Error: 49_968
.saturating_add(Weight::from_ref_time(41_612_399).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(41_612_399, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into())))
.saturating_add(Weight::from_proof_size(17706).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(0, 17706).saturating_mul(b.into()))
}
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -110,17 +110,17 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1374 + v * (2517 ±0) + b * (48 ±0)`
// Estimated: `11002 + v * (7511 ±0) + b * (98 ±0)`
// Minimum execution time: 785_089 nanoseconds.
Weight::from_ref_time(787_821_000)
.saturating_add(Weight::from_proof_size(11002))
Weight::from_parts(787_821_000, 0)
.saturating_add(Weight::from_parts(0, 11002))
// Standard Error: 6_537_112
.saturating_add(Weight::from_ref_time(209_763_687).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(209_763_687, 0).saturating_mul(v.into()))
// Standard Error: 26_155_732
.saturating_add(Weight::from_ref_time(810_490_010).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(810_490_010, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(7511).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(98).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(0, 7511).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 98).saturating_mul(b.into()))
}
/// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
/// Proof: FastUnstake ErasToCheckPerBlock (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1992`
// Estimated: `29234`
// Minimum execution time: 111_625 nanoseconds.
Weight::from_ref_time(112_568_000)
.saturating_add(Weight::from_proof_size(29234))
Weight::from_parts(112_568_000, 0)
.saturating_add(Weight::from_parts(0, 29234))
.saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(9))
}
@@ -175,8 +175,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `1220`
// Estimated: `10677`
// Minimum execution time: 42_563 nanoseconds.
Weight::from_ref_time(43_047_000)
.saturating_add(Weight::from_proof_size(10677))
Weight::from_parts(43_047_000, 0)
.saturating_add(Weight::from_parts(0, 10677))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -187,8 +187,8 @@ impl<T: frame_system::Config> pallet_fast_unstake::WeightInfo for WeightInfo<T>
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_676 nanoseconds.
Weight::from_ref_time(2_825_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_825_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
}
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `64 + r * (57 ±0)`
// Estimated: `1636`
// Minimum execution time: 11_675 nanoseconds.
Weight::from_ref_time(12_539_616)
.saturating_add(Weight::from_proof_size(1636))
Weight::from_parts(12_539_616, 0)
.saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_875
.saturating_add(Weight::from_ref_time(113_199).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(113_199, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -69,12 +69,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `474 + r * (5 ±0)`
// Estimated: `10013`
// Minimum execution time: 29_044 nanoseconds.
Weight::from_ref_time(29_062_250)
.saturating_add(Weight::from_proof_size(10013))
Weight::from_parts(29_062_250, 0)
.saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 5_693
.saturating_add(Weight::from_ref_time(78_081).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(78_081, 0).saturating_mul(r.into()))
// Standard Error: 1_110
.saturating_add(Weight::from_ref_time(458_837).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(458_837, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -90,15 +90,15 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `101`
// Estimated: `15746 + s * (2589 ±0)`
// Minimum execution time: 9_098 nanoseconds.
Weight::from_ref_time(22_624_884)
.saturating_add(Weight::from_proof_size(15746))
Weight::from_parts(22_624_884, 0)
.saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 3_865
.saturating_add(Weight::from_ref_time(2_735_607).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(2_735_607, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(2589).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into()))
}
/// Storage: Identity IdentityOf (r:1 w:0)
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
@@ -112,10 +112,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `226 + p * (32 ±0)`
// Estimated: `15746`
// Minimum execution time: 8_814 nanoseconds.
Weight::from_ref_time(22_140_295)
.saturating_add(Weight::from_proof_size(15746))
Weight::from_parts(22_140_295, 0)
.saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 3_600
.saturating_add(Weight::from_ref_time(1_108_458).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(1_108_458, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
@@ -134,14 +134,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `533 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `15746`
// Minimum execution time: 49_319 nanoseconds.
Weight::from_ref_time(28_073_986)
.saturating_add(Weight::from_proof_size(15746))
Weight::from_parts(28_073_986, 0)
.saturating_add(Weight::from_parts(0, 15746))
// Standard Error: 6_192
.saturating_add(Weight::from_ref_time(62_200).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(62_200, 0).saturating_mul(r.into()))
// Standard Error: 1_209
.saturating_add(Weight::from_ref_time(1_122_770).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_122_770, 0).saturating_mul(s.into()))
// Standard Error: 1_209
.saturating_add(Weight::from_ref_time(225_189).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(225_189, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -157,12 +157,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `431 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649`
// Minimum execution time: 30_208 nanoseconds.
Weight::from_ref_time(28_731_902)
.saturating_add(Weight::from_proof_size(11649))
Weight::from_parts(28_731_902, 0)
.saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 5_027
.saturating_add(Weight::from_ref_time(127_894).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(127_894, 0).saturating_mul(r.into()))
// Standard Error: 981
.saturating_add(Weight::from_ref_time(474_811).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(474_811, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -175,12 +175,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `430 + x * (66 ±0)`
// Estimated: `10013`
// Minimum execution time: 27_041 nanoseconds.
Weight::from_ref_time(26_760_677)
.saturating_add(Weight::from_proof_size(10013))
Weight::from_parts(26_760_677, 0)
.saturating_add(Weight::from_parts(0, 10013))
// Standard Error: 7_122
.saturating_add(Weight::from_ref_time(62_459).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(62_459, 0).saturating_mul(r.into()))
// Standard Error: 1_389
.saturating_add(Weight::from_ref_time(468_208).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(468_208, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)`
// Estimated: `1636`
// Minimum execution time: 7_140 nanoseconds.
Weight::from_ref_time(7_733_950)
.saturating_add(Weight::from_proof_size(1636))
Weight::from_parts(7_733_950, 0)
.saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_671
.saturating_add(Weight::from_ref_time(110_862).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(110_862, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -207,10 +207,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)`
// Estimated: `1636`
// Minimum execution time: 7_292 nanoseconds.
Weight::from_ref_time(7_744_432)
.saturating_add(Weight::from_proof_size(1636))
Weight::from_parts(7_744_432, 0)
.saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_228
.saturating_add(Weight::from_ref_time(103_386).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(103_386, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -222,10 +222,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `121 + r * (57 ±0)`
// Estimated: `1636`
// Minimum execution time: 7_335 nanoseconds.
Weight::from_ref_time(7_713_621)
.saturating_add(Weight::from_proof_size(1636))
Weight::from_parts(7_713_621, 0)
.saturating_add(Weight::from_parts(0, 1636))
// Standard Error: 1_281
.saturating_add(Weight::from_ref_time(99_586).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(99_586, 0).saturating_mul(r.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -240,12 +240,12 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `509 + r * (57 ±0) + x * (66 ±0)`
// Estimated: `11649`
// Minimum execution time: 23_161 nanoseconds.
Weight::from_ref_time(22_446_907)
.saturating_add(Weight::from_proof_size(11649))
Weight::from_parts(22_446_907, 0)
.saturating_add(Weight::from_parts(0, 11649))
// Standard Error: 5_391
.saturating_add(Weight::from_ref_time(112_497).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(112_497, 0).saturating_mul(r.into()))
// Standard Error: 997
.saturating_add(Weight::from_ref_time(769_392).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(769_392, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -265,14 +265,14 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `772 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
// Estimated: `18349`
// Minimum execution time: 54_015 nanoseconds.
Weight::from_ref_time(32_925_712)
.saturating_add(Weight::from_proof_size(18349))
Weight::from_parts(32_925_712, 0)
.saturating_add(Weight::from_parts(0, 18349))
// Standard Error: 7_533
.saturating_add(Weight::from_ref_time(63_262).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(63_262, 0).saturating_mul(r.into()))
// Standard Error: 1_471
.saturating_add(Weight::from_ref_time(1_155_232).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_155_232, 0).saturating_mul(s.into()))
// Standard Error: 1_471
.saturating_add(Weight::from_ref_time(226_801).saturating_mul(x.into()))
.saturating_add(Weight::from_parts(226_801, 0).saturating_mul(x.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
@@ -289,10 +289,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `507 + s * (36 ±0)`
// Estimated: `18335`
// Minimum execution time: 26_638 nanoseconds.
Weight::from_ref_time(31_911_936)
.saturating_add(Weight::from_proof_size(18335))
Weight::from_parts(31_911_936, 0)
.saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 1_403
.saturating_add(Weight::from_ref_time(68_428).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(68_428, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -306,10 +306,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `623 + s * (3 ±0)`
// Estimated: `12602`
// Minimum execution time: 12_649 nanoseconds.
Weight::from_ref_time(14_714_076)
.saturating_add(Weight::from_proof_size(12602))
Weight::from_parts(14_714_076, 0)
.saturating_add(Weight::from_parts(0, 12602))
// Standard Error: 739
.saturating_add(Weight::from_ref_time(15_226).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(15_226, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -325,10 +325,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `702 + s * (35 ±0)`
// Estimated: `18335`
// Minimum execution time: 30_152 nanoseconds.
Weight::from_ref_time(33_576_799)
.saturating_add(Weight::from_proof_size(18335))
Weight::from_parts(33_576_799, 0)
.saturating_add(Weight::from_parts(0, 18335))
// Standard Error: 937
.saturating_add(Weight::from_ref_time(52_181).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(52_181, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -342,10 +342,10 @@ impl<T: frame_system::Config> pallet_identity::WeightInfo for WeightInfo<T> {
// Measured: `628 + s * (37 ±0)`
// Estimated: `8322`
// Minimum execution time: 19_192 nanoseconds.
Weight::from_ref_time(21_910_906)
.saturating_add(Weight::from_proof_size(8322))
Weight::from_parts(21_910_906, 0)
.saturating_add(Weight::from_parts(0, 8322))
// Standard Error: 1_053
.saturating_add(Weight::from_ref_time(53_639).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(53_639, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -62,15 +62,15 @@ impl<T: frame_system::Config> pallet_im_online::WeightInfo for WeightInfo<T> {
// Measured: `425 + k * (32 ±0)`
// Estimated: `10345844 + k * (64 ±0) + e * (25 ±0)`
// Minimum execution time: 91_212 nanoseconds.
Weight::from_ref_time(72_601_149)
.saturating_add(Weight::from_proof_size(10345844))
Weight::from_parts(72_601_149, 0)
.saturating_add(Weight::from_parts(0, 10345844))
// Standard Error: 256
.saturating_add(Weight::from_ref_time(23_275).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(23_275, 0).saturating_mul(k.into()))
// Standard Error: 2_588
.saturating_add(Weight::from_ref_time(387_376).saturating_mul(e.into()))
.saturating_add(Weight::from_parts(387_376, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(64).saturating_mul(k.into()))
.saturating_add(Weight::from_proof_size(25).saturating_mul(e.into()))
.saturating_add(Weight::from_parts(0, 64).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(0, 25).saturating_mul(e.into()))
}
}
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `142`
// Estimated: `2544`
// Minimum execution time: 20_043 nanoseconds.
Weight::from_ref_time(20_524_000)
.saturating_add(Weight::from_proof_size(2544))
Weight::from_parts(20_524_000, 0)
.saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405`
// Estimated: `5147`
// Minimum execution time: 25_756 nanoseconds.
Weight::from_ref_time(26_328_000)
.saturating_add(Weight::from_proof_size(5147))
Weight::from_parts(26_328_000, 0)
.saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270`
// Estimated: `2544`
// Minimum execution time: 21_115 nanoseconds.
Weight::from_ref_time(21_969_000)
.saturating_add(Weight::from_proof_size(2544))
Weight::from_parts(21_969_000, 0)
.saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -92,8 +92,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `405`
// Estimated: `5147`
// Minimum execution time: 23_431 nanoseconds.
Weight::from_ref_time(23_760_000)
.saturating_add(Weight::from_proof_size(5147))
Weight::from_parts(23_760_000, 0)
.saturating_add(Weight::from_parts(0, 5147))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_indices::WeightInfo for WeightInfo<T> {
// Measured: `270`
// Estimated: `2544`
// Minimum execution time: 23_719 nanoseconds.
Weight::from_ref_time(24_080_000)
.saturating_add(Weight::from_proof_size(2544))
Weight::from_parts(24_080_000, 0)
.saturating_add(Weight::from_parts(0, 2544))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 12_271 nanoseconds.
Weight::from_ref_time(12_669_904)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(12_669_904, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(556).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(556, 0).saturating_mul(z.into()))
}
/// Storage: Multisig Multisigs (r:1 w:1)
/// Proof: Multisig Multisigs (max_values: None, max_size: Some(3346), added: 5821, mode: MaxEncodedLen)
@@ -65,12 +65,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `395 + s * (2 ±0)`
// Estimated: `5821`
// Minimum execution time: 38_074 nanoseconds.
Weight::from_ref_time(31_174_864)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(31_174_864, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 609
.saturating_add(Weight::from_ref_time(73_824).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(73_824, 0).saturating_mul(s.into()))
// Standard Error: 5
.saturating_add(Weight::from_ref_time(1_584).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_584, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -83,12 +83,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `317`
// Estimated: `5821`
// Minimum execution time: 28_082 nanoseconds.
Weight::from_ref_time(22_085_278)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(22_085_278, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 711
.saturating_add(Weight::from_ref_time(72_605).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(72_605, 0).saturating_mul(s.into()))
// Standard Error: 6
.saturating_add(Weight::from_ref_time(1_523).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_523, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -103,12 +103,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `455 + s * (33 ±0)`
// Estimated: `8424`
// Minimum execution time: 42_802 nanoseconds.
Weight::from_ref_time(34_774_719)
.saturating_add(Weight::from_proof_size(8424))
Weight::from_parts(34_774_719, 0)
.saturating_add(Weight::from_parts(0, 8424))
// Standard Error: 450
.saturating_add(Weight::from_ref_time(87_427).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(87_427, 0).saturating_mul(s.into()))
// Standard Error: 4
.saturating_add(Weight::from_ref_time(1_575).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_575, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -120,10 +120,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `405 + s * (2 ±0)`
// Estimated: `5821`
// Minimum execution time: 28_126 nanoseconds.
Weight::from_ref_time(29_606_606)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(29_606_606, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 830
.saturating_add(Weight::from_ref_time(79_120).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(79_120, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -135,10 +135,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `317`
// Estimated: `5821`
// Minimum execution time: 18_249 nanoseconds.
Weight::from_ref_time(19_695_213)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(19_695_213, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 662
.saturating_add(Weight::from_ref_time(77_485).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(77_485, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -150,10 +150,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `521 + s * (1 ±0)`
// Estimated: `5821`
// Minimum execution time: 29_871 nanoseconds.
Weight::from_ref_time(30_661_326)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(30_661_326, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 563
.saturating_add(Weight::from_ref_time(75_613).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(75_613, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -76,8 +76,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3586`
// Estimated: `38468`
// Minimum execution time: 154_304 nanoseconds.
Weight::from_ref_time(155_220_000)
.saturating_add(Weight::from_proof_size(38468))
Weight::from_parts(155_220_000, 0)
.saturating_add(Weight::from_parts(0, 38468))
.saturating_add(T::DbWeight::get().reads(17))
.saturating_add(T::DbWeight::get().writes(12))
}
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3628`
// Estimated: `39063`
// Minimum execution time: 150_523 nanoseconds.
Weight::from_ref_time(154_073_000)
.saturating_add(Weight::from_proof_size(39063))
Weight::from_parts(154_073_000, 0)
.saturating_add(Weight::from_parts(0, 39063))
.saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12))
}
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3427`
// Estimated: `38950`
// Minimum execution time: 162_554 nanoseconds.
Weight::from_ref_time(164_041_000)
.saturating_add(Weight::from_proof_size(38950))
Weight::from_parts(164_041_000, 0)
.saturating_add(Weight::from_parts(0, 38950))
.saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(12))
}
@@ -154,8 +154,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1220`
// Estimated: `13485`
// Minimum execution time: 58_946 nanoseconds.
Weight::from_ref_time(59_799_000)
.saturating_add(Weight::from_proof_size(13485))
Weight::from_parts(59_799_000, 0)
.saturating_add(Weight::from_parts(0, 13485))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `3865`
// Estimated: `43738`
// Minimum execution time: 155_416 nanoseconds.
Weight::from_ref_time(157_093_000)
.saturating_add(Weight::from_proof_size(43738))
Weight::from_parts(157_093_000, 0)
.saturating_add(Weight::from_parts(0, 43738))
.saturating_add(T::DbWeight::get().reads(18))
.saturating_add(T::DbWeight::get().writes(13))
}
@@ -213,10 +213,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1706`
// Estimated: `13025`
// Minimum execution time: 52_621 nanoseconds.
Weight::from_ref_time(53_508_921)
.saturating_add(Weight::from_proof_size(13025))
Weight::from_parts(53_508_921, 0)
.saturating_add(Weight::from_parts(0, 13025))
// Standard Error: 790
.saturating_add(Weight::from_ref_time(15_066).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(15_066, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -246,10 +246,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2230`
// Estimated: `22055`
// Minimum execution time: 102_019 nanoseconds.
Weight::from_ref_time(104_029_094)
.saturating_add(Weight::from_proof_size(22055))
Weight::from_parts(104_029_094, 0)
.saturating_add(Weight::from_parts(0, 22055))
// Standard Error: 1_344
.saturating_add(Weight::from_ref_time(13_886).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(13_886, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -301,10 +301,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2618`
// Estimated: `45099`
// Minimum execution time: 161_236 nanoseconds.
Weight::from_ref_time(164_070_568)
.saturating_add(Weight::from_proof_size(45099))
Weight::from_parts(164_070_568, 0)
.saturating_add(Weight::from_parts(0, 45099))
// Standard Error: 2_621
.saturating_add(Weight::from_ref_time(10_297).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(10_297, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(20))
.saturating_add(T::DbWeight::get().writes(18))
}
@@ -355,8 +355,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1254`
// Estimated: `32002`
// Minimum execution time: 142_981 nanoseconds.
Weight::from_ref_time(144_237_000)
.saturating_add(Weight::from_proof_size(32002))
Weight::from_parts(144_237_000, 0)
.saturating_add(Weight::from_parts(0, 32002))
.saturating_add(T::DbWeight::get().reads(21))
.saturating_add(T::DbWeight::get().writes(15))
}
@@ -390,14 +390,14 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1839`
// Estimated: `21998 + n * (2520 ±0)`
// Minimum execution time: 65_217 nanoseconds.
Weight::from_ref_time(65_750_377)
.saturating_add(Weight::from_proof_size(21998))
Weight::from_parts(65_750_377, 0)
.saturating_add(Weight::from_parts(0, 21998))
// Standard Error: 7_685
.saturating_add(Weight::from_ref_time(1_336_128).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(1_336_128, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
}
/// Storage: NominationPools BondedPools (r:1 w:1)
/// Proof: NominationPools BondedPools (max_values: None, max_size: Some(164), added: 2639, mode: MaxEncodedLen)
@@ -410,8 +410,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `1427`
// Estimated: `8752`
// Minimum execution time: 35_863 nanoseconds.
Weight::from_ref_time(36_287_000)
.saturating_add(Weight::from_proof_size(8752))
Weight::from_parts(36_287_000, 0)
.saturating_add(Weight::from_parts(0, 8752))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -427,10 +427,10 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `525`
// Estimated: `5883`
// Minimum execution time: 13_860 nanoseconds.
Weight::from_ref_time(14_425_990)
.saturating_add(Weight::from_proof_size(5883))
Weight::from_parts(14_425_990, 0)
.saturating_add(Weight::from_parts(0, 5883))
// Standard Error: 94
.saturating_add(Weight::from_ref_time(1_103).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(1_103, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -449,8 +449,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_097 nanoseconds.
Weight::from_ref_time(5_385_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(5_385_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(5))
}
/// Storage: NominationPools BondedPools (r:1 w:1)
@@ -460,8 +460,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `525`
// Estimated: `2639`
// Minimum execution time: 19_168 nanoseconds.
Weight::from_ref_time(19_566_000)
.saturating_add(Weight::from_proof_size(2639))
Weight::from_parts(19_566_000, 0)
.saturating_add(Weight::from_parts(0, 2639))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -488,8 +488,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `2066`
// Estimated: `20489`
// Minimum execution time: 64_030 nanoseconds.
Weight::from_ref_time(64_573_000)
.saturating_add(Weight::from_proof_size(20489))
Weight::from_parts(64_573_000, 0)
.saturating_add(Weight::from_parts(0, 20489))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -502,8 +502,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo
// Measured: `508`
// Estimated: `5708`
// Minimum execution time: 14_137 nanoseconds.
Weight::from_ref_time(14_483_000)
.saturating_add(Weight::from_proof_size(5708))
Weight::from_parts(14_483_000, 0)
.saturating_add(Weight::from_parts(0, 5708))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -55,10 +55,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `213`
// Estimated: `2566`
// Minimum execution time: 26_332 nanoseconds.
Weight::from_ref_time(26_523_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(26_523_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_331).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(2_331, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -72,10 +72,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144`
// Estimated: `2566`
// Minimum execution time: 16_527 nanoseconds.
Weight::from_ref_time(16_615_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(16_615_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_329).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(2_329, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -89,10 +89,10 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144`
// Estimated: `2566`
// Minimum execution time: 15_795 nanoseconds.
Weight::from_ref_time(15_943_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(15_943_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_327).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(2_327, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `391`
// Estimated: `2566`
// Minimum execution time: 33_007 nanoseconds.
Weight::from_ref_time(33_864_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(33_864_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -119,8 +119,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `182`
// Estimated: `2566`
// Minimum execution time: 20_702 nanoseconds.
Weight::from_ref_time(21_897_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(21_897_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -131,8 +131,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `258`
// Estimated: `2566`
// Minimum execution time: 18_832 nanoseconds.
Weight::from_ref_time(19_900_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(19_900_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -143,8 +143,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `182`
// Estimated: `2566`
// Minimum execution time: 11_561 nanoseconds.
Weight::from_ref_time(12_213_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(12_213_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -155,8 +155,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `80`
// Estimated: `2566`
// Minimum execution time: 12_670 nanoseconds.
Weight::from_ref_time(13_316_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(13_316_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -167,8 +167,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144`
// Estimated: `2566`
// Minimum execution time: 8_232 nanoseconds.
Weight::from_ref_time(8_455_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(8_455_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -181,8 +181,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `182`
// Estimated: `2566`
// Minimum execution time: 19_508 nanoseconds.
Weight::from_ref_time(20_469_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(20_469_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -193,8 +193,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144`
// Estimated: `2566`
// Minimum execution time: 8_487 nanoseconds.
Weight::from_ref_time(9_047_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(9_047_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -205,8 +205,8 @@ impl<T: frame_system::Config> pallet_preimage::WeightInfo for WeightInfo<T> {
// Measured: `144`
// Estimated: `2566`
// Minimum execution time: 8_421 nanoseconds.
Weight::from_ref_time(8_691_000)
.saturating_add(Weight::from_proof_size(2566))
Weight::from_parts(8_691_000, 0)
.saturating_add(Weight::from_parts(0, 2566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)`
// Estimated: `3716`
// Minimum execution time: 15_347 nanoseconds.
Weight::from_ref_time(15_780_294)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(15_780_294, 0)
.saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 837
.saturating_add(Weight::from_ref_time(38_642).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(38_642, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1))
}
/// Storage: Proxy Proxies (r:1 w:0)
@@ -72,12 +72,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `650 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027`
// Minimum execution time: 37_274 nanoseconds.
Weight::from_ref_time(38_291_200)
.saturating_add(Weight::from_proof_size(11027))
Weight::from_parts(38_291_200, 0)
.saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 5_000
.saturating_add(Weight::from_ref_time(131_239).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(131_239, 0).saturating_mul(a.into()))
// Standard Error: 5_166
.saturating_add(Weight::from_ref_time(23_237).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(23_237, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -92,12 +92,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)`
// Estimated: `7311`
// Minimum execution time: 21_081 nanoseconds.
Weight::from_ref_time(22_305_156)
.saturating_add(Weight::from_proof_size(7311))
Weight::from_parts(22_305_156, 0)
.saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_368
.saturating_add(Weight::from_ref_time(156_042).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(156_042, 0).saturating_mul(a.into()))
// Standard Error: 1_413
.saturating_add(Weight::from_ref_time(1_098).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(1_098, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -112,12 +112,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `533 + a * (68 ±0)`
// Estimated: `7311`
// Minimum execution time: 21_085 nanoseconds.
Weight::from_ref_time(22_134_455)
.saturating_add(Weight::from_proof_size(7311))
Weight::from_parts(22_134_455, 0)
.saturating_add(Weight::from_parts(0, 7311))
// Standard Error: 1_470
.saturating_add(Weight::from_ref_time(158_283).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(158_283, 0).saturating_mul(a.into()))
// Standard Error: 1_519
.saturating_add(Weight::from_ref_time(6_784).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(6_784, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -134,12 +134,12 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `582 + a * (68 ±0) + p * (37 ±0)`
// Estimated: `11027`
// Minimum execution time: 29_959 nanoseconds.
Weight::from_ref_time(34_668_660)
.saturating_add(Weight::from_proof_size(11027))
Weight::from_parts(34_668_660, 0)
.saturating_add(Weight::from_parts(0, 11027))
// Standard Error: 4_792
.saturating_add(Weight::from_ref_time(142_266).saturating_mul(a.into()))
.saturating_add(Weight::from_parts(142_266, 0).saturating_mul(a.into()))
// Standard Error: 4_951
.saturating_add(Weight::from_ref_time(16_544).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(16_544, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -151,10 +151,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)`
// Estimated: `3716`
// Minimum execution time: 22_615 nanoseconds.
Weight::from_ref_time(23_406_833)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(23_406_833, 0)
.saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_400
.saturating_add(Weight::from_ref_time(61_266).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(61_266, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -166,10 +166,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)`
// Estimated: `3716`
// Minimum execution time: 22_549 nanoseconds.
Weight::from_ref_time(23_521_968)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(23_521_968, 0)
.saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_589
.saturating_add(Weight::from_ref_time(61_407).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(61_407, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -181,10 +181,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `259 + p * (37 ±0)`
// Estimated: `3716`
// Minimum execution time: 17_911 nanoseconds.
Weight::from_ref_time(18_770_263)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(18_770_263, 0)
.saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_302
.saturating_add(Weight::from_ref_time(24_471).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(24_471, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -196,8 +196,8 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `239`
// Estimated: `3716`
// Minimum execution time: 24_293 nanoseconds.
Weight::from_ref_time(25_926_875)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(25_926_875, 0)
.saturating_add(Weight::from_parts(0, 3716))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -209,10 +209,10 @@ impl<T: frame_system::Config> pallet_proxy::WeightInfo for WeightInfo<T> {
// Measured: `296 + p * (37 ±0)`
// Estimated: `3716`
// Minimum execution time: 18_885 nanoseconds.
Weight::from_ref_time(19_514_850)
.saturating_add(Weight::from_proof_size(3716))
Weight::from_parts(19_514_850, 0)
.saturating_add(Weight::from_parts(0, 3716))
// Standard Error: 1_244
.saturating_add(Weight::from_ref_time(35_764).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(35_764, 0).saturating_mul(p.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `69`
// Estimated: `499`
// Minimum execution time: 4_026 nanoseconds.
Weight::from_ref_time(4_139_000)
.saturating_add(Weight::from_proof_size(499))
Weight::from_parts(4_139_000, 0)
.saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -65,10 +65,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)`
// Estimated: `41438`
// Minimum execution time: 3_563 nanoseconds.
Weight::from_ref_time(6_693_198)
.saturating_add(Weight::from_proof_size(41438))
Weight::from_parts(6_693_198, 0)
.saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_186
.saturating_add(Weight::from_ref_time(933_319).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(933_319, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -77,8 +77,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_928 nanoseconds.
Weight::from_ref_time(6_097_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_097_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// Storage: Preimage PreimageFor (r:1 w:1)
/// Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured)
@@ -90,13 +90,13 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `249 + s * (1 ±0)`
// Estimated: `5290 + s * (1 ±0)`
// Minimum execution time: 20_421 nanoseconds.
Weight::from_ref_time(20_813_000)
.saturating_add(Weight::from_proof_size(5290))
Weight::from_parts(20_813_000, 0)
.saturating_add(Weight::from_parts(0, 5290))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(1_167).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_167, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(1).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into()))
}
/// Storage: Scheduler Lookup (r:0 w:1)
/// Proof: Scheduler Lookup (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 7_724 nanoseconds.
Weight::from_ref_time(7_911_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(7_911_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
fn service_task_periodic() -> Weight {
@@ -114,24 +114,24 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_909 nanoseconds.
Weight::from_ref_time(6_046_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_046_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
fn execute_dispatch_signed() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_570 nanoseconds.
Weight::from_ref_time(2_658_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_658_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
fn execute_dispatch_unsigned() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_428 nanoseconds.
Weight::from_ref_time(2_590_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_590_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// Storage: Scheduler Agenda (r:1 w:1)
/// Proof: Scheduler Agenda (max_values: None, max_size: Some(38963), added: 41438, mode: MaxEncodedLen)
@@ -141,10 +141,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)`
// Estimated: `41438`
// Minimum execution time: 13_394 nanoseconds.
Weight::from_ref_time(16_496_080)
.saturating_add(Weight::from_proof_size(41438))
Weight::from_parts(16_496_080, 0)
.saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_394
.saturating_add(Weight::from_ref_time(922_960).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(922_960, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -158,10 +158,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `148 + s * (177 ±0)`
// Estimated: `41438`
// Minimum execution time: 17_994 nanoseconds.
Weight::from_ref_time(17_091_448)
.saturating_add(Weight::from_proof_size(41438))
Weight::from_parts(17_091_448, 0)
.saturating_add(Weight::from_parts(0, 41438))
// Standard Error: 2_380
.saturating_add(Weight::from_ref_time(1_653_591).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_653_591, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -175,10 +175,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `325 + s * (185 ±0)`
// Estimated: `43961`
// Minimum execution time: 16_065 nanoseconds.
Weight::from_ref_time(20_232_697)
.saturating_add(Weight::from_proof_size(43961))
Weight::from_parts(20_232_697, 0)
.saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 3_412
.saturating_add(Weight::from_ref_time(972_992).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(972_992, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -192,10 +192,10 @@ impl<T: frame_system::Config> pallet_scheduler::WeightInfo for WeightInfo<T> {
// Measured: `351 + s * (185 ±0)`
// Estimated: `43961`
// Minimum execution time: 18_848 nanoseconds.
Weight::from_ref_time(19_042_838)
.saturating_add(Weight::from_proof_size(43961))
Weight::from_parts(19_042_838, 0)
.saturating_add(Weight::from_parts(0, 43961))
// Standard Error: 2_754
.saturating_add(Weight::from_ref_time(1_676_910).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_676_910, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `1985`
// Estimated: `24861`
// Minimum execution time: 51_818 nanoseconds.
Weight::from_ref_time(52_338_000)
.saturating_add(Weight::from_proof_size(24861))
Weight::from_parts(52_338_000, 0)
.saturating_add(Weight::from_parts(0, 24861))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7))
}
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `1881`
// Estimated: `9803`
// Minimum execution time: 37_554 nanoseconds.
Weight::from_ref_time(38_608_000)
.saturating_add(Weight::from_proof_size(9803))
Weight::from_parts(38_608_000, 0)
.saturating_add(Weight::from_parts(0, 9803))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(7))
}
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1046`
// Estimated: `10386`
// Minimum execution time: 42_440 nanoseconds.
Weight::from_ref_time(43_399_000)
.saturating_add(Weight::from_proof_size(10386))
Weight::from_parts(43_399_000, 0)
.saturating_add(Weight::from_parts(0, 10386))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -80,8 +80,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2183`
// Estimated: `22888`
// Minimum execution time: 85_399 nanoseconds.
Weight::from_ref_time(86_379_000)
.saturating_add(Weight::from_proof_size(22888))
Weight::from_parts(86_379_000, 0)
.saturating_add(Weight::from_parts(0, 22888))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(7))
}
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2390`
// Estimated: `29534`
// Minimum execution time: 90_672 nanoseconds.
Weight::from_ref_time(91_355_000)
.saturating_add(Weight::from_proof_size(29534))
Weight::from_parts(91_355_000, 0)
.saturating_add(Weight::from_parts(0, 29534))
.saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -127,10 +127,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1045`
// Estimated: `10442`
// Minimum execution time: 36_564 nanoseconds.
Weight::from_ref_time(38_050_629)
.saturating_add(Weight::from_proof_size(10442))
Weight::from_parts(38_050_629, 0)
.saturating_add(Weight::from_parts(0, 10442))
// Standard Error: 659
.saturating_add(Weight::from_ref_time(10_672).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(10_672, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -168,14 +168,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2413 + s * (4 ±0)`
// Estimated: `32230 + s * (4 ±0)`
// Minimum execution time: 77_962 nanoseconds.
Weight::from_ref_time(84_271_455)
.saturating_add(Weight::from_proof_size(32230))
Weight::from_parts(84_271_455, 0)
.saturating_add(Weight::from_parts(0, 32230))
// Standard Error: 2_943
.saturating_add(Weight::from_ref_time(1_160_262).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_160_262, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(13))
.saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
}
/// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -204,8 +204,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1375`
// Estimated: `19359`
// Minimum execution time: 56_193 nanoseconds.
Weight::from_ref_time(57_188_000)
.saturating_add(Weight::from_proof_size(19359))
Weight::from_parts(57_188_000, 0)
.saturating_add(Weight::from_parts(0, 19359))
.saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -219,14 +219,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1255 + k * (601 ±0)`
// Estimated: `3566 + k * (3033 ±0)`
// Minimum execution time: 29_497 nanoseconds.
Weight::from_ref_time(27_406_513)
.saturating_add(Weight::from_proof_size(3566))
Weight::from_parts(27_406_513, 0)
.saturating_add(Weight::from_parts(0, 3566))
// Standard Error: 6_875
.saturating_add(Weight::from_ref_time(8_027_936).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(8_027_936, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(3033).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(0, 3033).saturating_mul(k.into()))
}
/// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -256,14 +256,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1915 + n * (105 ±0)`
// Estimated: `21988 + n * (2520 ±0)`
// Minimum execution time: 64_934 nanoseconds.
Weight::from_ref_time(62_801_713)
.saturating_add(Weight::from_proof_size(21988))
Weight::from_parts(62_801_713, 0)
.saturating_add(Weight::from_parts(0, 21988))
// Standard Error: 17_298
.saturating_add(Weight::from_ref_time(3_316_608).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(3_316_608, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(6))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(n.into()))
}
/// Storage: Staking Ledger (r:1 w:0)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -284,8 +284,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1803`
// Estimated: `17932`
// Minimum execution time: 57_608 nanoseconds.
Weight::from_ref_time(58_161_000)
.saturating_add(Weight::from_proof_size(17932))
Weight::from_parts(58_161_000, 0)
.saturating_add(Weight::from_parts(0, 17932))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(6))
}
@@ -298,8 +298,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `803`
// Estimated: `3566`
// Minimum execution time: 14_397 nanoseconds.
Weight::from_ref_time(14_671_000)
.saturating_add(Weight::from_proof_size(3566))
Weight::from_parts(14_671_000, 0)
.saturating_add(Weight::from_parts(0, 3566))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -312,8 +312,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `902`
// Estimated: `9679`
// Minimum execution time: 22_179 nanoseconds.
Weight::from_ref_time(22_463_000)
.saturating_add(Weight::from_proof_size(9679))
Weight::from_parts(22_463_000, 0)
.saturating_add(Weight::from_parts(0, 9679))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -324,8 +324,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_604 nanoseconds.
Weight::from_ref_time(2_730_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_730_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Staking ForceEra (r:0 w:1)
@@ -335,8 +335,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 10_758 nanoseconds.
Weight::from_ref_time(11_100_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_100_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Staking ForceEra (r:0 w:1)
@@ -346,8 +346,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 11_225 nanoseconds.
Weight::from_ref_time(11_492_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_492_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Staking ForceEra (r:0 w:1)
@@ -357,8 +357,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 10_892 nanoseconds.
Weight::from_ref_time(11_207_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_207_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Staking Invulnerables (r:0 w:1)
@@ -369,10 +369,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_724 nanoseconds.
Weight::from_ref_time(3_193_284)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(3_193_284, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 30
.saturating_add(Weight::from_ref_time(14_317).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(14_317, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Staking Bonded (r:1 w:1)
@@ -407,14 +407,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2107 + s * (4 ±0)`
// Estimated: `27859 + s * (4 ±0)`
// Minimum execution time: 73_201 nanoseconds.
Weight::from_ref_time(76_412_897)
.saturating_add(Weight::from_proof_size(27859))
Weight::from_parts(76_412_897, 0)
.saturating_add(Weight::from_parts(0, 27859))
// Standard Error: 1_913
.saturating_add(Weight::from_ref_time(1_151_150).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_151_150, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
}
/// Storage: Staking UnappliedSlashes (r:1 w:1)
/// Proof Skipped: Staking UnappliedSlashes (max_values: None, max_size: None, mode: Measured)
@@ -424,10 +424,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `66638`
// Estimated: `69113`
// Minimum execution time: 118_133 nanoseconds.
Weight::from_ref_time(878_805_908)
.saturating_add(Weight::from_proof_size(69113))
Weight::from_parts(878_805_908, 0)
.saturating_add(Weight::from_parts(0, 69113))
// Standard Error: 53_240
.saturating_add(Weight::from_ref_time(4_314_838).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(4_314_838, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -455,15 +455,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `5901 + n * (151 ±0)`
// Estimated: `32226 + n * (8030 ±0)`
// Minimum execution time: 70_532 nanoseconds.
Weight::from_ref_time(88_104_322)
.saturating_add(Weight::from_proof_size(32226))
Weight::from_parts(88_104_322, 0)
.saturating_add(Weight::from_parts(0, 32226))
// Standard Error: 27_400
.saturating_add(Weight::from_ref_time(25_775_656).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(25_775_656, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(8030).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 8030).saturating_mul(n.into()))
}
/// Storage: Staking CurrentEra (r:1 w:0)
/// Proof: Staking CurrentEra (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -491,15 +491,15 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `9517 + n * (467 ±0)`
// Estimated: `41758 + n * (16038 ±3)`
// Minimum execution time: 86_749 nanoseconds.
Weight::from_ref_time(118_435_518)
.saturating_add(Weight::from_proof_size(41758))
Weight::from_parts(118_435_518, 0)
.saturating_add(Weight::from_parts(0, 41758))
// Standard Error: 33_932
.saturating_add(Weight::from_ref_time(33_424_550).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(33_424_550, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(16038).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 16038).saturating_mul(n.into()))
}
/// Storage: Staking Ledger (r:1 w:1)
/// Proof: Staking Ledger (max_values: None, max_size: Some(1091), added: 3566, mode: MaxEncodedLen)
@@ -519,10 +519,10 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2184 + l * (5 ±0)`
// Estimated: `25491`
// Minimum execution time: 81_814 nanoseconds.
Weight::from_ref_time(83_200_231)
.saturating_add(Weight::from_proof_size(25491))
Weight::from_parts(83_200_231, 0)
.saturating_add(Weight::from_parts(0, 25491))
// Standard Error: 3_443
.saturating_add(Weight::from_ref_time(46_203).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(46_203, 0).saturating_mul(l.into()))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -558,14 +558,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `2413 + s * (4 ±0)`
// Estimated: `31737 + s * (4 ±0)`
// Minimum execution time: 83_757 nanoseconds.
Weight::from_ref_time(85_543_170)
.saturating_add(Weight::from_proof_size(31737))
Weight::from_parts(85_543_170, 0)
.saturating_add(Weight::from_parts(0, 31737))
// Standard Error: 1_507
.saturating_add(Weight::from_ref_time(1_144_523).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_144_523, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(12))
.saturating_add(T::DbWeight::get().writes(12))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
.saturating_add(Weight::from_proof_size(4).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(0, 4).saturating_mul(s.into()))
}
/// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -610,19 +610,19 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0 + v * (3658 ±0) + n * (812 ±0)`
// Estimated: `472278 + v * (16741 ±0) + n * (12939 ±0)`
// Minimum execution time: 515_664 nanoseconds.
Weight::from_ref_time(519_521_000)
.saturating_add(Weight::from_proof_size(472278))
Weight::from_parts(519_521_000, 0)
.saturating_add(Weight::from_parts(0, 472278))
// Standard Error: 2_014_897
.saturating_add(Weight::from_ref_time(65_361_695).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(65_361_695, 0).saturating_mul(v.into()))
// Standard Error: 200_773
.saturating_add(Weight::from_ref_time(16_583_313).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(16_583_313, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(185))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(5))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into())))
.saturating_add(Weight::from_proof_size(16741).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(12939).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 16741).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 12939).saturating_mul(n.into()))
}
/// Storage: VoterList CounterForListNodes (r:1 w:0)
/// Proof: VoterList CounterForListNodes (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -649,18 +649,18 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `3100 + v * (455 ±0) + n * (1003 ±0)`
// Estimated: `456188 + v * (14295 ±0) + n * (11775 ±0)`
// Minimum execution time: 31_094_046 nanoseconds.
Weight::from_ref_time(31_244_499_000)
.saturating_add(Weight::from_proof_size(456188))
Weight::from_parts(31_244_499_000, 0)
.saturating_add(Weight::from_parts(0, 456188))
// Standard Error: 346_502
.saturating_add(Weight::from_ref_time(4_915_541).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(4_915_541, 0).saturating_mul(v.into()))
// Standard Error: 346_502
.saturating_add(Weight::from_ref_time(3_234_757).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(3_234_757, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(180))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(14295).saturating_mul(v.into()))
.saturating_add(Weight::from_proof_size(11775).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 14295).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 11775).saturating_mul(n.into()))
}
/// Storage: Staking CounterForValidators (r:1 w:0)
/// Proof: Staking CounterForValidators (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -674,14 +674,14 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `950 + v * (50 ±0)`
// Estimated: `3562 + v * (2520 ±0)`
// Minimum execution time: 3_839_775 nanoseconds.
Weight::from_ref_time(3_865_684_000)
.saturating_add(Weight::from_proof_size(3562))
Weight::from_parts(3_865_684_000, 0)
.saturating_add(Weight::from_parts(0, 3562))
// Standard Error: 44_261
.saturating_add(Weight::from_ref_time(2_811_910).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(2_811_910, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2520).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into()))
}
/// Storage: Staking MinCommission (r:0 w:1)
/// Proof: Staking MinCommission (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -700,8 +700,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_144 nanoseconds.
Weight::from_ref_time(6_343_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_343_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6))
}
/// Storage: Staking MinCommission (r:0 w:1)
@@ -721,8 +721,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_687 nanoseconds.
Weight::from_ref_time(5_998_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(5_998_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(6))
}
/// Storage: Staking Ledger (r:1 w:0)
@@ -750,8 +750,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `1958`
// Estimated: `19438`
// Minimum execution time: 71_032 nanoseconds.
Weight::from_ref_time(71_712_000)
.saturating_add(Weight::from_proof_size(19438))
Weight::from_parts(71_712_000, 0)
.saturating_add(Weight::from_parts(0, 19438))
.saturating_add(T::DbWeight::get().reads(11))
.saturating_add(T::DbWeight::get().writes(6))
}
@@ -764,8 +764,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `661`
// Estimated: `3019`
// Minimum execution time: 12_940 nanoseconds.
Weight::from_ref_time(13_343_000)
.saturating_add(Weight::from_proof_size(3019))
Weight::from_parts(13_343_000, 0)
.saturating_add(Weight::from_parts(0, 3019))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -776,8 +776,8 @@ impl<T: frame_system::Config> pallet_staking::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_887 nanoseconds.
Weight::from_ref_time(3_056_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(3_056_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
}
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `311`
// Estimated: `1006`
// Minimum execution time: 9_409 nanoseconds.
Weight::from_ref_time(9_725_000)
.saturating_add(Weight::from_proof_size(1006))
Weight::from_parts(9_725_000, 0)
.saturating_add(Weight::from_parts(0, 1006))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -64,7 +64,7 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `94`
// Estimated: `0`
// Minimum execution time: 3_952 nanoseconds.
Weight::from_ref_time(4_025_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(4_025_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
}
@@ -51,18 +51,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_885 nanoseconds.
Weight::from_ref_time(11_162_365)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_162_365, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_439
.saturating_add(Weight::from_ref_time(4_637_012).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(4_637_012, 0).saturating_mul(c.into()))
}
fn as_derivative() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_203 nanoseconds.
Weight::from_ref_time(5_441_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(5_441_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// The range of component `c` is `[0, 1000]`.
fn batch_all(c: u32, ) -> Weight {
@@ -70,18 +70,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 7_067 nanoseconds.
Weight::from_ref_time(11_552_327)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_552_327, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_783
.saturating_add(Weight::from_ref_time(4_935_647).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(4_935_647, 0).saturating_mul(c.into()))
}
fn dispatch_as() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 8_999 nanoseconds.
Weight::from_ref_time(9_297_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(9_297_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// The range of component `c` is `[0, 1000]`.
fn force_batch(c: u32, ) -> Weight {
@@ -89,9 +89,9 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_876 nanoseconds.
Weight::from_ref_time(10_175_160)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(10_175_160, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 3_709
.saturating_add(Weight::from_ref_time(4_685_640).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(4_685_640, 0).saturating_mul(c.into()))
}
}
@@ -56,12 +56,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `411 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306`
// Minimum execution time: 29_824 nanoseconds.
Weight::from_ref_time(28_717_712)
.saturating_add(Weight::from_proof_size(7306))
Weight::from_parts(28_717_712, 0)
.saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 764
.saturating_add(Weight::from_ref_time(46_637).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(46_637, 0).saturating_mul(l.into()))
// Standard Error: 1_359
.saturating_add(Weight::from_ref_time(74_164).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(74_164, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -76,12 +76,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `411 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `7306`
// Minimum execution time: 28_921 nanoseconds.
Weight::from_ref_time(28_545_679)
.saturating_add(Weight::from_proof_size(7306))
Weight::from_parts(28_545_679, 0)
.saturating_add(Weight::from_parts(0, 7306))
// Standard Error: 590
.saturating_add(Weight::from_ref_time(38_502).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(38_502, 0).saturating_mul(l.into()))
// Standard Error: 1_049
.saturating_add(Weight::from_ref_time(46_713).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(46_713, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -98,12 +98,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `546 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909`
// Minimum execution time: 31_695 nanoseconds.
Weight::from_ref_time(30_837_986)
.saturating_add(Weight::from_proof_size(9909))
Weight::from_parts(30_837_986, 0)
.saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 795
.saturating_add(Weight::from_ref_time(50_558).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(50_558, 0).saturating_mul(l.into()))
// Standard Error: 1_415
.saturating_add(Weight::from_ref_time(73_289).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(73_289, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -120,12 +120,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `546 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909`
// Minimum execution time: 31_319 nanoseconds.
Weight::from_ref_time(30_790_564)
.saturating_add(Weight::from_proof_size(9909))
Weight::from_parts(30_790_564, 0)
.saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 665
.saturating_add(Weight::from_ref_time(39_746).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(39_746, 0).saturating_mul(l.into()))
// Standard Error: 1_183
.saturating_add(Weight::from_ref_time(50_607).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(50_607, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -142,12 +142,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `617 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909`
// Minimum execution time: 49_632 nanoseconds.
Weight::from_ref_time(50_035_640)
.saturating_add(Weight::from_proof_size(9909))
Weight::from_parts(50_035_640, 0)
.saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 1_457
.saturating_add(Weight::from_ref_time(45_951).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(45_951, 0).saturating_mul(l.into()))
// Standard Error: 2_593
.saturating_add(Weight::from_ref_time(58_374).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(58_374, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -164,12 +164,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `752 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `12512`
// Minimum execution time: 51_816 nanoseconds.
Weight::from_ref_time(51_705_864)
.saturating_add(Weight::from_proof_size(12512))
Weight::from_parts(51_705_864, 0)
.saturating_add(Weight::from_parts(0, 12512))
// Standard Error: 1_446
.saturating_add(Weight::from_ref_time(43_671).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(43_671, 0).saturating_mul(l.into()))
// Standard Error: 2_574
.saturating_add(Weight::from_ref_time(63_148).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(63_148, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -186,12 +186,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `544 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909`
// Minimum execution time: 32_895 nanoseconds.
Weight::from_ref_time(32_577_652)
.saturating_add(Weight::from_proof_size(9909))
Weight::from_parts(32_577_652, 0)
.saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 1_018
.saturating_add(Weight::from_ref_time(37_445).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(37_445, 0).saturating_mul(l.into()))
// Standard Error: 1_880
.saturating_add(Weight::from_ref_time(65_218).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(65_218, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -208,12 +208,12 @@ impl<T: frame_system::Config> pallet_vesting::WeightInfo for WeightInfo<T> {
// Measured: `544 + l * (25 ±0) + s * (36 ±0)`
// Estimated: `9909`
// Minimum execution time: 33_169 nanoseconds.
Weight::from_ref_time(32_526_311)
.saturating_add(Weight::from_proof_size(9909))
Weight::from_parts(32_526_311, 0)
.saturating_add(Weight::from_parts(0, 9909))
// Standard Error: 884
.saturating_add(Weight::from_ref_time(39_392).saturating_mul(l.into()))
.saturating_add(Weight::from_parts(39_392, 0).saturating_mul(l.into()))
// Standard Error: 1_633
.saturating_add(Weight::from_ref_time(64_317).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(64_317, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -60,8 +60,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `169`
// Estimated: `9260`
// Minimum execution time: 30_849 nanoseconds.
Weight::from_ref_time(31_945_000)
.saturating_add(Weight::from_proof_size(9260))
Weight::from_parts(31_945_000, 0)
.saturating_add(Weight::from_parts(0, 9260))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -70,16 +70,16 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 22_799 nanoseconds.
Weight::from_ref_time(23_316_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(23_316_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
fn reserve_transfer_assets() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 21_833 nanoseconds.
Weight::from_ref_time(22_121_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(22_121_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// Storage: Benchmark Override (r:0 w:0)
/// Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured)
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 18_446_744_073_709_551 nanoseconds.
Weight::from_ref_time(18_446_744_073_709_551_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(18_446_744_073_709_551_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// Storage: XcmPallet SupportedVersion (r:0 w:1)
/// Proof Skipped: XcmPallet SupportedVersion (max_values: None, max_size: None, mode: Measured)
@@ -98,8 +98,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 9_945 nanoseconds.
Weight::from_ref_time(10_250_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(10_250_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: XcmPallet SafeXcmVersion (r:0 w:1)
@@ -109,8 +109,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_700 nanoseconds.
Weight::from_ref_time(2_815_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_815_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: XcmPallet VersionNotifiers (r:1 w:1)
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `169`
// Estimated: `12737`
// Minimum execution time: 36_182 nanoseconds.
Weight::from_ref_time(36_714_000)
.saturating_add(Weight::from_proof_size(12737))
Weight::from_parts(36_714_000, 0)
.saturating_add(Weight::from_parts(0, 12737))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(6))
}
@@ -158,8 +158,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `326`
// Estimated: `13172`
// Minimum execution time: 36_706 nanoseconds.
Weight::from_ref_time(37_135_000)
.saturating_add(Weight::from_proof_size(13172))
Weight::from_parts(37_135_000, 0)
.saturating_add(Weight::from_parts(0, 13172))
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -170,8 +170,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `229`
// Estimated: `10129`
// Minimum execution time: 15_818 nanoseconds.
Weight::from_ref_time(16_246_000)
.saturating_add(Weight::from_proof_size(10129))
Weight::from_parts(16_246_000, 0)
.saturating_add(Weight::from_parts(0, 10129))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -182,8 +182,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `233`
// Estimated: `10133`
// Minimum execution time: 15_799 nanoseconds.
Weight::from_ref_time(16_232_000)
.saturating_add(Weight::from_proof_size(10133))
Weight::from_parts(16_232_000, 0)
.saturating_add(Weight::from_parts(0, 10133))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -194,8 +194,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `243`
// Estimated: `12618`
// Minimum execution time: 18_584 nanoseconds.
Weight::from_ref_time(19_031_000)
.saturating_add(Weight::from_proof_size(12618))
Weight::from_parts(19_031_000, 0)
.saturating_add(Weight::from_parts(0, 12618))
.saturating_add(T::DbWeight::get().reads(5))
}
/// Storage: XcmPallet VersionNotifyTargets (r:2 w:1)
@@ -215,8 +215,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `239`
// Estimated: `14799`
// Minimum execution time: 33_133 nanoseconds.
Weight::from_ref_time(33_402_000)
.saturating_add(Weight::from_proof_size(14799))
Weight::from_parts(33_402_000, 0)
.saturating_add(Weight::from_parts(0, 14799))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -227,8 +227,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `272`
// Estimated: `7697`
// Minimum execution time: 8_589 nanoseconds.
Weight::from_ref_time(8_837_000)
.saturating_add(Weight::from_proof_size(7697))
Weight::from_parts(8_837_000, 0)
.saturating_add(Weight::from_parts(0, 7697))
.saturating_add(T::DbWeight::get().reads(3))
}
/// Storage: XcmPallet VersionNotifyTargets (r:4 w:2)
@@ -238,8 +238,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `240`
// Estimated: `10140`
// Minimum execution time: 16_573 nanoseconds.
Weight::from_ref_time(17_162_000)
.saturating_add(Weight::from_proof_size(10140))
Weight::from_parts(17_162_000, 0)
.saturating_add(Weight::from_parts(0, 10140))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -260,8 +260,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `243`
// Estimated: `19773`
// Minimum execution time: 39_648 nanoseconds.
Weight::from_ref_time(40_257_000)
.saturating_add(Weight::from_proof_size(19773))
Weight::from_parts(40_257_000, 0)
.saturating_add(Weight::from_parts(0, 19773))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `4`
// Estimated: `1002`
// Minimum execution time: 12_271 nanoseconds.
Weight::from_ref_time(12_608_000)
.saturating_add(Weight::from_proof_size(1002))
Weight::from_parts(12_608_000, 0)
.saturating_add(Weight::from_parts(0, 1002))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `635`
// Estimated: `19290`
// Minimum execution time: 69_074 nanoseconds.
Weight::from_ref_time(70_726_000)
.saturating_add(Weight::from_proof_size(19290))
Weight::from_parts(70_726_000, 0)
.saturating_add(Weight::from_parts(0, 19290))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `7060429`
// Estimated: `51338925`
// Minimum execution time: 16_090_025 nanoseconds.
Weight::from_ref_time(16_438_002_000)
.saturating_add(Weight::from_proof_size(51338925))
Weight::from_parts(16_438_002_000, 0)
.saturating_add(Weight::from_parts(0, 51338925))
.saturating_add(T::DbWeight::get().reads(3688))
.saturating_add(T::DbWeight::get().writes(3683))
}
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> runtime_common::auctions::WeightInfo for WeightInf
// Measured: `178884`
// Estimated: `16009503`
// Minimum execution time: 4_773_572 nanoseconds.
Weight::from_ref_time(4_870_970_000)
.saturating_add(Weight::from_proof_size(16009503))
Weight::from_parts(4_870_970_000, 0)
.saturating_add(Weight::from_parts(0, 16009503))
.saturating_add(T::DbWeight::get().reads(3673))
.saturating_add(T::DbWeight::get().writes(3673))
}
@@ -58,8 +58,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `418`
// Estimated: `9592`
// Minimum execution time: 39_590 nanoseconds.
Weight::from_ref_time(40_531_000)
.saturating_add(Weight::from_proof_size(9592))
Weight::from_parts(40_531_000, 0)
.saturating_add(Weight::from_parts(0, 9592))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `368`
// Estimated: `13872`
// Minimum execution time: 111_368 nanoseconds.
Weight::from_ref_time(112_815_000)
.saturating_add(Weight::from_proof_size(13872))
Weight::from_parts(112_815_000, 0)
.saturating_add(Weight::from_parts(0, 13872))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `786`
// Estimated: `12239`
// Minimum execution time: 57_399 nanoseconds.
Weight::from_ref_time(58_224_000)
.saturating_add(Weight::from_proof_size(12239))
Weight::from_parts(58_224_000, 0)
.saturating_add(Weight::from_parts(0, 12239))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -115,15 +115,15 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `236 + k * (220 ±0)`
// Estimated: `256 + k * (221 ±0)`
// Minimum execution time: 40_233 nanoseconds.
Weight::from_ref_time(54_026_000)
.saturating_add(Weight::from_proof_size(256))
Weight::from_parts(54_026_000, 0)
.saturating_add(Weight::from_parts(0, 256))
// Standard Error: 13_085
.saturating_add(Weight::from_ref_time(22_927_324).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(22_927_324, 0).saturating_mul(k.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(k.into())))
.saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(k.into())))
.saturating_add(Weight::from_proof_size(221).saturating_mul(k.into()))
.saturating_add(Weight::from_parts(0, 221).saturating_mul(k.into()))
}
/// Storage: Crowdloan Funds (r:1 w:1)
/// Proof Skipped: Crowdloan Funds (max_values: None, max_size: None, mode: Measured)
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `439`
// Estimated: `5517`
// Minimum execution time: 29_857 nanoseconds.
Weight::from_ref_time(30_340_000)
.saturating_add(Weight::from_proof_size(5517))
Weight::from_parts(30_340_000, 0)
.saturating_add(Weight::from_parts(0, 5517))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -146,8 +146,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `267`
// Estimated: `2742`
// Minimum execution time: 17_245 nanoseconds.
Weight::from_ref_time(17_847_000)
.saturating_add(Weight::from_proof_size(2742))
Weight::from_parts(17_847_000, 0)
.saturating_add(Weight::from_parts(0, 2742))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -160,8 +160,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `444`
// Estimated: `5838`
// Minimum execution time: 24_929 nanoseconds.
Weight::from_ref_time(25_462_000)
.saturating_add(Weight::from_proof_size(5838))
Weight::from_parts(25_462_000, 0)
.saturating_add(Weight::from_parts(0, 5838))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -174,8 +174,8 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `271`
// Estimated: `3512`
// Minimum execution time: 17_200 nanoseconds.
Weight::from_ref_time(17_776_000)
.saturating_add(Weight::from_proof_size(3512))
Weight::from_parts(17_776_000, 0)
.saturating_add(Weight::from_parts(0, 3512))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -205,14 +205,14 @@ impl<T: frame_system::Config> runtime_common::crowdloan::WeightInfo for WeightIn
// Measured: `118 + n * (420 ±0)`
// Estimated: `6947 + n * (14663 ±0)`
// Minimum execution time: 114_121 nanoseconds.
Weight::from_ref_time(116_551_000)
.saturating_add(Weight::from_proof_size(6947))
Weight::from_parts(116_551_000, 0)
.saturating_add(Weight::from_parts(0, 6947))
// Standard Error: 47_770
.saturating_add(Weight::from_ref_time(50_697_962).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(50_697_962, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into())))
.saturating_add(T::DbWeight::get().writes(3))
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(n.into())))
.saturating_add(Weight::from_proof_size(14663).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 14663).saturating_mul(n.into()))
}
}
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `97`
// Estimated: `5736`
// Minimum execution time: 27_616 nanoseconds.
Weight::from_ref_time(28_197_000)
.saturating_add(Weight::from_proof_size(5736))
Weight::from_parts(28_197_000, 0)
.saturating_add(Weight::from_parts(0, 5736))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -84,8 +84,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `302`
// Estimated: `18063`
// Minimum execution time: 7_577_009 nanoseconds.
Weight::from_ref_time(7_620_824_000)
.saturating_add(Weight::from_proof_size(18063))
Weight::from_parts(7_620_824_000, 0)
.saturating_add(Weight::from_parts(0, 18063))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7))
}
@@ -112,8 +112,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `187`
// Estimated: `17028`
// Minimum execution time: 7_373_489 nanoseconds.
Weight::from_ref_time(7_488_705_000)
.saturating_add(Weight::from_proof_size(17028))
Weight::from_parts(7_488_705_000, 0)
.saturating_add(Weight::from_parts(0, 17028))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(7))
}
@@ -134,8 +134,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `467`
// Estimated: `13197`
// Minimum execution time: 41_183 nanoseconds.
Weight::from_ref_time(41_974_000)
.saturating_add(Weight::from_proof_size(13197))
Weight::from_parts(41_974_000, 0)
.saturating_add(Weight::from_parts(0, 13197))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -158,8 +158,8 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `668`
// Estimated: `27446`
// Minimum execution time: 45_991 nanoseconds.
Weight::from_ref_time(47_156_000)
.saturating_add(Weight::from_proof_size(27446))
Weight::from_parts(47_156_000, 0)
.saturating_add(Weight::from_parts(0, 27446))
.saturating_add(T::DbWeight::get().reads(10))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -189,10 +189,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `28`
// Estimated: `16615`
// Minimum execution time: 39_149 nanoseconds.
Weight::from_ref_time(39_522_000)
.saturating_add(Weight::from_proof_size(16615))
Weight::from_parts(39_522_000, 0)
.saturating_add(Weight::from_parts(0, 16615))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_325).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(2_325, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -204,10 +204,10 @@ impl<T: frame_system::Config> runtime_common::paras_registrar::WeightInfo for We
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 9_032 nanoseconds.
Weight::from_ref_time(9_110_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(9_110_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2
.saturating_add(Weight::from_ref_time(919).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(919, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().writes(1))
}
}
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `213`
// Estimated: `5291`
// Minimum execution time: 25_281 nanoseconds.
Weight::from_ref_time(25_756_000)
.saturating_add(Weight::from_proof_size(5291))
Weight::from_parts(25_756_000, 0)
.saturating_add(Weight::from_parts(0, 5291))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -78,20 +78,20 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `0 + c * (47 ±0) + t * (370 ±0)`
// Estimated: `268218 + c * (1076 ±0) + t * (7963 ±0)`
// Minimum execution time: 642_912 nanoseconds.
Weight::from_ref_time(645_898_000)
.saturating_add(Weight::from_proof_size(268218))
Weight::from_parts(645_898_000, 0)
.saturating_add(Weight::from_parts(0, 268218))
// Standard Error: 82_879
.saturating_add(Weight::from_ref_time(2_665_736).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(2_665_736, 0).saturating_mul(c.into()))
// Standard Error: 82_879
.saturating_add(Weight::from_ref_time(13_913_344).saturating_mul(t.into()))
.saturating_add(Weight::from_parts(13_913_344, 0).saturating_mul(t.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(t.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(t.into())))
.saturating_add(Weight::from_proof_size(1076).saturating_mul(c.into()))
.saturating_add(Weight::from_proof_size(7963).saturating_mul(t.into()))
.saturating_add(Weight::from_parts(0, 1076).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 7963).saturating_mul(t.into()))
}
/// Storage: Slots Leases (r:1 w:1)
/// Proof Skipped: Slots Leases (max_values: None, max_size: None, mode: Measured)
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `2941`
// Estimated: `26240`
// Minimum execution time: 98_060 nanoseconds.
Weight::from_ref_time(99_621_000)
.saturating_add(Weight::from_proof_size(26240))
Weight::from_parts(99_621_000, 0)
.saturating_add(Weight::from_parts(0, 26240))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(9))
}
@@ -122,8 +122,8 @@ impl<T: frame_system::Config> runtime_common::slots::WeightInfo for WeightInfo<T
// Measured: `628`
// Estimated: `13535`
// Minimum execution time: 26_638 nanoseconds.
Weight::from_ref_time(27_214_000)
.saturating_add(Weight::from_proof_size(13535))
Weight::from_parts(27_214_000, 0)
.saturating_add(Weight::from_parts(0, 13535))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90`
// Estimated: `1755`
// Minimum execution time: 9_185 nanoseconds.
Weight::from_ref_time(9_492_000)
.saturating_add(Weight::from_proof_size(1755))
Weight::from_parts(9_492_000, 0)
.saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90`
// Estimated: `1755`
// Minimum execution time: 9_350 nanoseconds.
Weight::from_ref_time(9_740_000)
.saturating_add(Weight::from_proof_size(1755))
Weight::from_parts(9_740_000, 0)
.saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90`
// Estimated: `1755`
// Minimum execution time: 9_462 nanoseconds.
Weight::from_ref_time(9_762_000)
.saturating_add(Weight::from_proof_size(1755))
Weight::from_parts(9_762_000, 0)
.saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -104,8 +104,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90`
// Estimated: `1755`
// Minimum execution time: 9_576 nanoseconds.
Weight::from_ref_time(9_879_000)
.saturating_add(Weight::from_proof_size(1755))
Weight::from_parts(9_879_000, 0)
.saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -116,8 +116,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_000_000_000_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// Storage: Configuration PendingConfigs (r:1 w:1)
/// Proof Skipped: Configuration PendingConfigs (max_values: Some(1), max_size: None, mode: Measured)
@@ -130,8 +130,8 @@ impl<T: frame_system::Config> runtime_parachains::configuration::WeightInfo for
// Measured: `90`
// Estimated: `1755`
// Minimum execution time: 9_608 nanoseconds.
Weight::from_ref_time(9_928_000)
.saturating_add(Weight::from_proof_size(1755))
Weight::from_parts(9_928_000, 0)
.saturating_add(Weight::from_parts(0, 1755))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -52,8 +52,8 @@ impl<T: frame_system::Config> runtime_parachains::disputes::WeightInfo for Weigh
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_740 nanoseconds.
Weight::from_ref_time(2_842_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_842_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
}
@@ -85,12 +85,12 @@ impl<T: frame_system::Config> runtime_parachains::disputes::slashing::WeightInfo
// Measured: `4631 + n * (209 ±0)`
// Estimated: `77841 + n * (2317 ±0)`
// Minimum execution time: 86_772 nanoseconds.
Weight::from_ref_time(124_398_343)
.saturating_add(Weight::from_proof_size(77841))
Weight::from_parts(124_398_343, 0)
.saturating_add(Weight::from_parts(0, 77841))
// Standard Error: 3_624
.saturating_add(Weight::from_ref_time(361_232).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(361_232, 0).saturating_mul(n.into()))
.saturating_add(T::DbWeight::get().reads(17))
.saturating_add(T::DbWeight::get().writes(9))
.saturating_add(Weight::from_proof_size(2317).saturating_mul(n.into()))
.saturating_add(Weight::from_parts(0, 2317).saturating_mul(n.into()))
}
}
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `307`
// Estimated: `22751`
// Minimum execution time: 35_099 nanoseconds.
Weight::from_ref_time(35_616_000)
.saturating_add(Weight::from_proof_size(22751))
Weight::from_parts(35_616_000, 0)
.saturating_add(Weight::from_parts(0, 22751))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -88,8 +88,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `453`
// Estimated: `17568`
// Minimum execution time: 32_216 nanoseconds.
Weight::from_ref_time(32_725_000)
.saturating_add(Weight::from_proof_size(17568))
Weight::from_parts(32_725_000, 0)
.saturating_add(Weight::from_parts(0, 17568))
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -108,8 +108,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `270`
// Estimated: `11745`
// Minimum execution time: 27_964 nanoseconds.
Weight::from_ref_time(28_273_000)
.saturating_add(Weight::from_proof_size(11745))
Weight::from_parts(28_273_000, 0)
.saturating_add(Weight::from_parts(0, 11745))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -132,20 +132,20 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `215 + i * (131 ±0) + e * (131 ±0)`
// Estimated: `6120 + i * (5742 ±0) + e * (5736 ±0)`
// Minimum execution time: 1_079_349 nanoseconds.
Weight::from_ref_time(1_082_875_000)
.saturating_add(Weight::from_proof_size(6120))
Weight::from_parts(1_082_875_000, 0)
.saturating_add(Weight::from_parts(0, 6120))
// Standard Error: 96_221
.saturating_add(Weight::from_ref_time(3_166_230).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(3_166_230, 0).saturating_mul(i.into()))
// Standard Error: 96_221
.saturating_add(Weight::from_ref_time(3_268_684).saturating_mul(e.into()))
.saturating_add(Weight::from_parts(3_268_684, 0).saturating_mul(e.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(e.into())))
.saturating_add(T::DbWeight::get().writes(4))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into())))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(e.into())))
.saturating_add(Weight::from_proof_size(5742).saturating_mul(i.into()))
.saturating_add(Weight::from_proof_size(5736).saturating_mul(e.into()))
.saturating_add(Weight::from_parts(0, 5742).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(0, 5736).saturating_mul(e.into()))
}
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -169,15 +169,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `427 + c * (166 ±0)`
// Estimated: `3804 + c * (18661 ±0)`
// Minimum execution time: 6_079 nanoseconds.
Weight::from_ref_time(2_963_503)
.saturating_add(Weight::from_proof_size(3804))
Weight::from_parts(2_963_503, 0)
.saturating_add(Weight::from_parts(0, 3804))
// Standard Error: 16_012
.saturating_add(Weight::from_ref_time(18_835_466).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(18_835_466, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((6_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(18661).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 18661).saturating_mul(c.into()))
}
/// Storage: Hrmp HrmpCloseChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpCloseChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -197,15 +197,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `268 + c * (155 ±0)`
// Estimated: `1998 + c * (8361 ±0)`
// Minimum execution time: 4_900 nanoseconds.
Weight::from_ref_time(1_670_034)
.saturating_add(Weight::from_proof_size(1998))
Weight::from_parts(1_670_034, 0)
.saturating_add(Weight::from_parts(0, 1998))
// Standard Error: 11_256
.saturating_add(Weight::from_ref_time(11_514_950).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(11_514_950, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(8361).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 8361).saturating_mul(c.into()))
}
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -219,13 +219,13 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `983 + c * (13 ±0)`
// Estimated: `7794 + c * (45 ±0)`
// Minimum execution time: 20_543 nanoseconds.
Weight::from_ref_time(26_343_259)
.saturating_add(Weight::from_proof_size(7794))
Weight::from_parts(26_343_259, 0)
.saturating_add(Weight::from_parts(0, 7794))
// Standard Error: 1_548
.saturating_add(Weight::from_ref_time(69_766).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(69_766, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(3))
.saturating_add(Weight::from_proof_size(45).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 45).saturating_mul(c.into()))
}
/// Storage: Hrmp HrmpOpenChannelRequestsList (r:1 w:1)
/// Proof Skipped: Hrmp HrmpOpenChannelRequestsList (max_values: Some(1), max_size: None, mode: Measured)
@@ -237,15 +237,15 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `178 + c * (94 ±0)`
// Estimated: `834 + c * (2664 ±0)`
// Minimum execution time: 4_088 nanoseconds.
Weight::from_ref_time(3_216_089)
.saturating_add(Weight::from_proof_size(834))
Weight::from_parts(3_216_089, 0)
.saturating_add(Weight::from_parts(0, 834))
// Standard Error: 3_010
.saturating_add(Weight::from_ref_time(3_078_715).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(3_078_715, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(2664).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 2664).saturating_mul(c.into()))
}
/// Storage: Paras ParaLifecycles (r:2 w:0)
/// Proof Skipped: Paras ParaLifecycles (max_values: None, max_size: None, mode: Measured)
@@ -272,8 +272,8 @@ impl<T: frame_system::Config> runtime_parachains::hrmp::WeightInfo for WeightInf
// Measured: `307`
// Estimated: `33265`
// Minimum execution time: 48_862 nanoseconds.
Weight::from_ref_time(49_253_000)
.saturating_add(Weight::from_proof_size(33265))
Weight::from_parts(49_253_000, 0)
.saturating_add(Weight::from_parts(0, 33265))
.saturating_add(T::DbWeight::get().reads(13))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -53,12 +53,12 @@ impl<T: frame_system::Config> runtime_parachains::initializer::WeightInfo for We
// Measured: `28 + d * (11 ±0)`
// Estimated: `519 + d * (11 ±0)`
// Minimum execution time: 3_562 nanoseconds.
Weight::from_ref_time(5_936_312)
.saturating_add(Weight::from_proof_size(519))
Weight::from_parts(5_936_312, 0)
.saturating_add(Weight::from_parts(0, 519))
// Standard Error: 4
.saturating_add(Weight::from_ref_time(1_313).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(1_313, 0).saturating_mul(d.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(11).saturating_mul(d.into()))
.saturating_add(Weight::from_parts(0, 11).saturating_mul(d.into()))
}
}
@@ -63,10 +63,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `8341`
// Estimated: `57966`
// Minimum execution time: 32_871 nanoseconds.
Weight::from_ref_time(33_099_000)
.saturating_add(Weight::from_proof_size(57966))
Weight::from_parts(33_099_000, 0)
.saturating_add(Weight::from_parts(0, 57966))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_313).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(2_313, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(6))
}
@@ -78,10 +78,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 8_008 nanoseconds.
Weight::from_ref_time(8_206_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(8_206_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(921).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(921, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: Paras FutureCodeHash (r:1 w:1)
@@ -110,10 +110,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `16526`
// Estimated: `179120`
// Minimum execution time: 57_920 nanoseconds.
Weight::from_ref_time(58_255_000)
.saturating_add(Weight::from_proof_size(179120))
Weight::from_parts(58_255_000, 0)
.saturating_add(Weight::from_parts(0, 179120))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_337).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(2_337, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(8))
}
@@ -129,10 +129,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `95`
// Estimated: `2760`
// Minimum execution time: 13_669 nanoseconds.
Weight::from_ref_time(13_872_000)
.saturating_add(Weight::from_proof_size(2760))
Weight::from_parts(13_872_000, 0)
.saturating_add(Weight::from_parts(0, 2760))
// Standard Error: 2
.saturating_add(Weight::from_ref_time(917).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(917, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -145,8 +145,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `4283`
// Estimated: `11536`
// Minimum execution time: 19_437 nanoseconds.
Weight::from_ref_time(20_010_000)
.saturating_add(Weight::from_proof_size(11536))
Weight::from_parts(20_010_000, 0)
.saturating_add(Weight::from_parts(0, 11536))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -160,10 +160,10 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28`
// Estimated: `5006`
// Minimum execution time: 7_714 nanoseconds.
Weight::from_ref_time(7_825_000)
.saturating_add(Weight::from_proof_size(5006))
Weight::from_parts(7_825_000, 0)
.saturating_add(Weight::from_parts(0, 5006))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(2_320).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(2_320, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -176,8 +176,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `28`
// Estimated: `2531`
// Minimum execution time: 5_518 nanoseconds.
Weight::from_ref_time(5_683_000)
.saturating_add(Weight::from_proof_size(2531))
Weight::from_parts(5_683_000, 0)
.saturating_add(Weight::from_parts(0, 2531))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -192,8 +192,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26709`
// Estimated: `83592`
// Minimum execution time: 87_670 nanoseconds.
Weight::from_ref_time(90_517_000)
.saturating_add(Weight::from_proof_size(83592))
Weight::from_parts(90_517_000, 0)
.saturating_add(Weight::from_parts(0, 83592))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -216,8 +216,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27295`
// Estimated: `196015`
// Minimum execution time: 803_005 nanoseconds.
Weight::from_ref_time(811_058_000)
.saturating_add(Weight::from_proof_size(196015))
Weight::from_parts(811_058_000, 0)
.saturating_add(Weight::from_parts(0, 196015))
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(104))
}
@@ -232,8 +232,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `27241`
// Estimated: `85188`
// Minimum execution time: 87_231 nanoseconds.
Weight::from_ref_time(87_949_000)
.saturating_add(Weight::from_proof_size(85188))
Weight::from_parts(87_949_000, 0)
.saturating_add(Weight::from_parts(0, 85188))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -252,8 +252,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26763`
// Estimated: `140250`
// Minimum execution time: 636_356 nanoseconds.
Weight::from_ref_time(641_339_000)
.saturating_add(Weight::from_proof_size(140250))
Weight::from_parts(641_339_000, 0)
.saturating_add(Weight::from_parts(0, 140250))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -268,8 +268,8 @@ impl<T: frame_system::Config> runtime_parachains::paras::WeightInfo for WeightIn
// Measured: `26709`
// Estimated: `83592`
// Minimum execution time: 86_178 nanoseconds.
Weight::from_ref_time(87_400_000)
.saturating_add(Weight::from_proof_size(83592))
Weight::from_parts(87_400_000, 0)
.saturating_add(Weight::from_parts(0, 83592))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -113,13 +113,13 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `50844`
// Estimated: `1459401 + v * (16 ±0)`
// Minimum execution time: 792_123 nanoseconds.
Weight::from_ref_time(317_232_240)
.saturating_add(Weight::from_proof_size(1459401))
Weight::from_parts(317_232_240, 0)
.saturating_add(Weight::from_parts(0, 1459401))
// Standard Error: 31_502
.saturating_add(Weight::from_ref_time(48_212_479).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(48_212_479, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(28))
.saturating_add(T::DbWeight::get().writes(16))
.saturating_add(Weight::from_proof_size(16).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(0, 16).saturating_mul(v.into()))
}
/// Storage: ParaInherent Included (r:1 w:1)
/// Proof Skipped: ParaInherent Included (max_values: Some(1), max_size: None, mode: Measured)
@@ -186,8 +186,8 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42647`
// Estimated: `1182237`
// Minimum execution time: 346_395 nanoseconds.
Weight::from_ref_time(352_253_000)
.saturating_add(Weight::from_proof_size(1182237))
Weight::from_parts(352_253_000, 0)
.saturating_add(Weight::from_parts(0, 1182237))
.saturating_add(T::DbWeight::get().reads(26))
.saturating_add(T::DbWeight::get().writes(17))
}
@@ -259,10 +259,10 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42678`
// Estimated: `1233177`
// Minimum execution time: 5_650_864 nanoseconds.
Weight::from_ref_time(912_498_037)
.saturating_add(Weight::from_proof_size(1233177))
Weight::from_parts(912_498_037, 0)
.saturating_add(Weight::from_parts(0, 1233177))
// Standard Error: 44_727
.saturating_add(Weight::from_ref_time(47_405_991).saturating_mul(v.into()))
.saturating_add(Weight::from_parts(47_405_991, 0).saturating_mul(v.into()))
.saturating_add(T::DbWeight::get().reads(29))
.saturating_add(T::DbWeight::get().writes(16))
}
@@ -337,8 +337,8 @@ impl<T: frame_system::Config> runtime_parachains::paras_inherent::WeightInfo for
// Measured: `42705`
// Estimated: `1324293`
// Minimum execution time: 38_692_756 nanoseconds.
Weight::from_ref_time(38_855_318_000)
.saturating_add(Weight::from_proof_size(1324293))
Weight::from_parts(38_855_318_000, 0)
.saturating_add(Weight::from_parts(0, 1324293))
.saturating_add(T::DbWeight::get().reads(31))
.saturating_add(T::DbWeight::get().writes(16))
}
@@ -51,10 +51,10 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_303 nanoseconds.
Weight::from_ref_time(680_036)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(680_036, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 11
.saturating_add(Weight::from_ref_time(1_902).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(1_902, 0).saturating_mul(s.into()))
}
/// Storage: Ump NeedsDispatch (r:1 w:1)
/// Proof Skipped: Ump NeedsDispatch (max_values: Some(1), max_size: None, mode: Measured)
@@ -69,8 +69,8 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `238`
// Estimated: `1942`
// Minimum execution time: 9_313 nanoseconds.
Weight::from_ref_time(9_573_000)
.saturating_add(Weight::from_proof_size(1942))
Weight::from_parts(9_573_000, 0)
.saturating_add(Weight::from_parts(0, 1942))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -83,8 +83,8 @@ impl<T: frame_system::Config> runtime_parachains::ump::WeightInfo for WeightInfo
// Measured: `223`
// Estimated: `3197`
// Minimum execution time: 23_606 nanoseconds.
Weight::from_ref_time(24_025_000)
.saturating_add(Weight::from_proof_size(3197))
Weight::from_parts(24_025_000, 0)
.saturating_add(Weight::from_parts(0, 3197))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -47,13 +47,13 @@ pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo<T> {
// Storage: System Account (r:1 w:1)
pub(crate) fn withdraw_asset() -> Weight {
Weight::from_ref_time(20_308_000 as u64)
Weight::from_parts(20_308_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:2 w:2)
pub(crate) fn transfer_asset() -> Weight {
Weight::from_ref_time(32_193_000 as u64)
Weight::from_parts(32_193_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -64,23 +64,23 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn transfer_reserve_asset() -> Weight {
Weight::from_ref_time(50_731_000 as u64)
Weight::from_parts(50_731_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
// Storage: Benchmark Override (r:0 w:0)
pub(crate) fn reserve_asset_deposited() -> Weight {
Weight::from_ref_time(2_000_000_000_000 as u64)
Weight::from_parts(2_000_000_000_000 as u64, 0)
}
// Storage: System Account (r:1 w:1)
pub(crate) fn receive_teleported_asset() -> Weight {
Weight::from_ref_time(19_622_000 as u64)
Weight::from_parts(19_622_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
pub(crate) fn deposit_asset() -> Weight {
Weight::from_ref_time(22_433_000 as u64)
Weight::from_parts(22_433_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -91,7 +91,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn deposit_reserve_asset() -> Weight {
Weight::from_ref_time(41_765_000 as u64)
Weight::from_parts(41_765_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -102,7 +102,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
pub(crate) fn initiate_teleport() -> Weight {
Weight::from_ref_time(41_204_000 as u64)
Weight::from_parts(41_204_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -53,38 +53,38 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn report_holding() -> Weight {
Weight::from_ref_time(34_089_000 as u64)
Weight::from_parts(34_089_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
pub(crate) fn buy_execution() -> Weight {
Weight::from_ref_time(5_751_000 as u64)
Weight::from_parts(5_751_000 as u64, 0)
}
// Storage: XcmPallet Queries (r:1 w:0)
pub(crate) fn query_response() -> Weight {
Weight::from_ref_time(17_938_000 as u64)
Weight::from_parts(17_938_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
pub(crate) fn transact() -> Weight {
Weight::from_ref_time(20_699_000 as u64)
Weight::from_parts(20_699_000 as u64, 0)
}
pub(crate) fn refund_surplus() -> Weight {
Weight::from_ref_time(6_077_000 as u64)
Weight::from_parts(6_077_000 as u64, 0)
}
pub(crate) fn set_error_handler() -> Weight {
Weight::from_ref_time(5_747_000 as u64)
Weight::from_parts(5_747_000 as u64, 0)
}
pub(crate) fn set_appendix() -> Weight {
Weight::from_ref_time(5_837_000 as u64)
Weight::from_parts(5_837_000 as u64, 0)
}
pub(crate) fn clear_error() -> Weight {
Weight::from_ref_time(5_712_000 as u64)
Weight::from_parts(5_712_000 as u64, 0)
}
pub(crate) fn descend_origin() -> Weight {
Weight::from_ref_time(6_471_000 as u64)
Weight::from_parts(6_471_000 as u64, 0)
}
pub(crate) fn clear_origin() -> Weight {
Weight::from_ref_time(5_725_000 as u64)
Weight::from_parts(5_725_000 as u64, 0)
}
// Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -92,18 +92,18 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn report_error() -> Weight {
Weight::from_ref_time(29_975_000 as u64)
Weight::from_parts(29_975_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: XcmPallet AssetTraps (r:1 w:1)
pub(crate) fn claim_asset() -> Weight {
Weight::from_ref_time(21_598_000 as u64)
Weight::from_parts(21_598_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
pub(crate) fn trap() -> Weight {
Weight::from_ref_time(5_665_000 as u64)
Weight::from_parts(5_665_000 as u64, 0)
}
// Storage: XcmPallet VersionNotifyTargets (r:1 w:1)
// Storage: XcmPallet SupportedVersion (r:1 w:0)
@@ -112,13 +112,13 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn subscribe_version() -> Weight {
Weight::from_ref_time(38_343_000 as u64)
Weight::from_parts(38_343_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: XcmPallet VersionNotifyTargets (r:0 w:1)
pub(crate) fn unsubscribe_version() -> Weight {
Weight::from_ref_time(8_353_000 as u64)
Weight::from_parts(8_353_000 as u64, 0)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: XcmPallet SupportedVersion (r:1 w:0)
@@ -127,24 +127,24 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn initiate_reserve_withdraw() -> Weight {
Weight::from_ref_time(33_100_000 as u64)
Weight::from_parts(33_100_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
pub(crate) fn burn_asset() -> Weight {
Weight::from_ref_time(7_259_000 as u64)
Weight::from_parts(7_259_000 as u64, 0)
}
pub(crate) fn expect_asset() -> Weight {
Weight::from_ref_time(5_848_000 as u64)
Weight::from_parts(5_848_000 as u64, 0)
}
pub(crate) fn expect_origin() -> Weight {
Weight::from_ref_time(5_787_000 as u64)
Weight::from_parts(5_787_000 as u64, 0)
}
pub(crate) fn expect_error() -> Weight {
Weight::from_ref_time(5_775_000 as u64)
Weight::from_parts(5_775_000 as u64, 0)
}
pub(crate) fn expect_transact_status() -> Weight {
Weight::from_ref_time(5_775_000 as u64)
Weight::from_parts(5_775_000 as u64, 0)
}
// Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -152,12 +152,12 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn query_pallet() -> Weight {
Weight::from_ref_time(34_846_000 as u64)
Weight::from_parts(34_846_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
pub(crate) fn expect_pallet() -> Weight {
Weight::from_ref_time(8_844_000 as u64)
Weight::from_parts(8_844_000 as u64, 0)
}
// Storage: XcmPallet SupportedVersion (r:1 w:0)
// Storage: XcmPallet VersionDiscoveryQueue (r:1 w:1)
@@ -165,23 +165,23 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: Dmp DownwardMessageQueues (r:1 w:1)
// Storage: Dmp DownwardMessageQueueHeads (r:1 w:1)
pub(crate) fn report_transact_status() -> Weight {
Weight::from_ref_time(50_256_000 as u64)
Weight::from_parts(50_256_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
pub(crate) fn clear_transact_status() -> Weight {
Weight::from_ref_time(9_959_000 as u64)
Weight::from_parts(9_959_000 as u64, 0)
}
pub(crate) fn set_topic() -> Weight {
Weight::from_ref_time(10_007_000 as u64)
Weight::from_parts(10_007_000 as u64, 0)
}
pub(crate) fn clear_topic() -> Weight {
Weight::from_ref_time(8_289_000 as u64)
Weight::from_parts(8_289_000 as u64, 0)
}
pub(crate) fn set_fees_mode() -> Weight {
Weight::from_ref_time(5_764_000 as u64)
Weight::from_parts(5_764_000 as u64, 0)
}
pub(crate) fn unpaid_execution() -> Weight {
Weight::from_ref_time(5_924_000 as u64)
Weight::from_parts(5_924_000 as u64, 0)
}
}