Migrate to Weight::from_parts (#2245)

* Migrate to from_parts

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

* Fix remaining files

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

* cargo update -p polkadot-primitives

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

* cargo update -p sp-io

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

* Use Master Cargo.lock

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

* cargo update -p polkadot-primitives

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

* cargo update -p sp-io

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

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
Oliver Tale-Yazdi
2023-03-03 13:47:23 +01:00
committed by GitHub
parent cf3ddb831c
commit 70a0864e4c
128 changed files with 2223 additions and 2223 deletions
@@ -24,7 +24,7 @@ pub mod constants {
parameter_types! {
/// Importing a block with 0 Extrinsics.
pub const BlockExecutionWeight: Weight =
Weight::from_ref_time(constants::WEIGHT_REF_TIME_PER_NANOS.saturating_mul(5_000_000));
Weight::from_parts(constants::WEIGHT_REF_TIME_PER_NANOS.saturating_mul(5_000_000), 0);
}
#[cfg(test)]
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> cumulus_pallet_xcmp_queue::WeightInfo for WeightIn
// Measured: `76`
// Estimated: `571`
// Minimum execution time: 4_956 nanoseconds.
Weight::from_ref_time(5_247_000)
.saturating_add(Weight::from_proof_size(571))
Weight::from_parts(5_247_000, 0)
.saturating_add(Weight::from_parts(0, 571))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -66,8 +66,8 @@ impl<T: frame_system::Config> cumulus_pallet_xcmp_queue::WeightInfo for WeightIn
// Measured: `76`
// Estimated: `571`
// Minimum execution time: 4_875 nanoseconds.
Weight::from_ref_time(5_123_000)
.saturating_add(Weight::from_proof_size(571))
Weight::from_parts(5_123_000, 0)
.saturating_add(Weight::from_parts(0, 571))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -24,7 +24,7 @@ pub mod constants {
parameter_types! {
/// Executing a NO-OP `System::remarks` Extrinsic.
pub const ExtrinsicBaseWeight: Weight =
Weight::from_ref_time(constants::WEIGHT_REF_TIME_PER_NANOS.saturating_mul(125_000));
Weight::from_parts(constants::WEIGHT_REF_TIME_PER_NANOS.saturating_mul(125_000), 0);
}
#[cfg(test)]
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_541 nanoseconds.
Weight::from_ref_time(1_600_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_600_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 {
@@ -64,10 +64,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_433 nanoseconds.
Weight::from_ref_time(6_528_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_528_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 0
.saturating_add(Weight::from_ref_time(1_718).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(1_718, 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)
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `495`
// Minimum execution time: 3_378 nanoseconds.
Weight::from_ref_time(3_546_000)
.saturating_add(Weight::from_proof_size(495))
Weight::from_parts(3_546_000, 0)
.saturating_add(Weight::from_parts(0, 495))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -91,10 +91,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_595 nanoseconds.
Weight::from_ref_time(1_637_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_637_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1_677
.saturating_add(Weight::from_ref_time(581_830).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(581_830, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
}
/// Storage: Skipped Metadata (r:0 w:0)
@@ -105,10 +105,10 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 1_602 nanoseconds.
Weight::from_ref_time(1_645_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(1_645_000, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 808
.saturating_add(Weight::from_ref_time(448_210).saturating_mul(i.into()))
.saturating_add(Weight::from_parts(448_210, 0).saturating_mul(i.into()))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
}
/// Storage: Skipped Metadata (r:0 w:0)
@@ -119,11 +119,11 @@ impl<T: frame_system::Config> frame_system::WeightInfo for WeightInfo<T> {
// Measured: `68 + p * (69 ±0)`
// Estimated: `66 + p * (70 ±0)`
// Minimum execution time: 3_400 nanoseconds.
Weight::from_ref_time(3_518_000)
.saturating_add(Weight::from_proof_size(66))
Weight::from_parts(3_518_000, 0)
.saturating_add(Weight::from_parts(0, 66))
// Standard Error: 949
.saturating_add(Weight::from_ref_time(952_748).saturating_mul(p.into()))
.saturating_add(Weight::from_parts(952_748, 0).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()))
}
}
@@ -54,8 +54,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1314`
// Estimated: `2603`
// Minimum execution time: 45_555 nanoseconds.
Weight::from_ref_time(46_097_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(46_097_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_balances::WeightInfo for WeightInfo<T> {
// Measured: `1198`
// Estimated: `2603`
// Minimum execution time: 34_465 nanoseconds.
Weight::from_ref_time(35_054_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(35_054_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -78,8 +78,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1348`
// Estimated: `2603`
// Minimum execution time: 25_670 nanoseconds.
Weight::from_ref_time(26_254_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(26_254_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -90,8 +90,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1348`
// Estimated: `2603`
// Minimum execution time: 28_919 nanoseconds.
Weight::from_ref_time(29_611_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(29_611_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -102,8 +102,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1310`
// Estimated: `5206`
// Minimum execution time: 44_604 nanoseconds.
Weight::from_ref_time(45_498_000)
.saturating_add(Weight::from_proof_size(5206))
Weight::from_parts(45_498_000, 0)
.saturating_add(Weight::from_parts(0, 5206))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -114,8 +114,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1198`
// Estimated: `2603`
// Minimum execution time: 39_412 nanoseconds.
Weight::from_ref_time(40_181_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(40_181_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -126,8 +126,8 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
// Measured: `1232`
// Estimated: `2603`
// Minimum execution time: 22_520 nanoseconds.
Weight::from_ref_time(23_045_000)
.saturating_add(Weight::from_proof_size(2603))
Weight::from_parts(23_045_000, 0)
.saturating_add(Weight::from_parts(0, 2603))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -57,13 +57,13 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `214 + b * (78 ±0)`
// Estimated: `213 + b * (2554 ±0)`
// Minimum execution time: 13_768 nanoseconds.
Weight::from_ref_time(15_128_018)
.saturating_add(Weight::from_proof_size(213))
Weight::from_parts(15_128_018, 0)
.saturating_add(Weight::from_parts(0, 213))
// Standard Error: 3_110
.saturating_add(Weight::from_ref_time(2_490_861).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(2_490_861, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1))
.saturating_add(Weight::from_proof_size(2554).saturating_mul(b.into()))
.saturating_add(Weight::from_parts(0, 2554).saturating_mul(b.into()))
}
/// Storage: CollatorSelection DesiredCandidates (r:0 w:1)
/// Proof: CollatorSelection DesiredCandidates (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -72,8 +72,8 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_359 nanoseconds.
Weight::from_ref_time(6_591_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_591_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: CollatorSelection CandidacyBond (r:0 w:1)
@@ -83,8 +83,8 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 6_722 nanoseconds.
Weight::from_ref_time(6_963_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(6_963_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: CollatorSelection Candidates (r:1 w:1)
@@ -105,13 +105,13 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `1167 + c * (48 ±0)`
// Estimated: `56785 + c * (49 ±0)`
// Minimum execution time: 35_190 nanoseconds.
Weight::from_ref_time(27_223_783)
.saturating_add(Weight::from_proof_size(56785))
Weight::from_parts(27_223_783, 0)
.saturating_add(Weight::from_parts(0, 56785))
// Standard Error: 1_270
.saturating_add(Weight::from_ref_time(103_824).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(103_824, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
.saturating_add(Weight::from_proof_size(49).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into()))
}
/// Storage: CollatorSelection Candidates (r:1 w:1)
/// Proof: CollatorSelection Candidates (max_values: Some(1), max_size: Some(48002), added: 48497, mode: MaxEncodedLen)
@@ -123,10 +123,10 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `503 + c * (48 ±0)`
// Estimated: `48497`
// Minimum execution time: 26_271 nanoseconds.
Weight::from_ref_time(16_336_190)
.saturating_add(Weight::from_proof_size(48497))
Weight::from_parts(16_336_190, 0)
.saturating_add(Weight::from_parts(0, 48497))
// Standard Error: 1_250
.saturating_add(Weight::from_ref_time(105_123).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(105_123, 0).saturating_mul(c.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -141,8 +141,8 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `187`
// Estimated: `5749`
// Minimum execution time: 26_583 nanoseconds.
Weight::from_ref_time(26_888_000)
.saturating_add(Weight::from_proof_size(5749))
Weight::from_parts(26_888_000, 0)
.saturating_add(Weight::from_parts(0, 5749))
.saturating_add(T::DbWeight::get().reads(3))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -163,15 +163,15 @@ impl<T: frame_system::Config> pallet_collator_selection::WeightInfo for WeightIn
// Measured: `22878 + r * (148 ±0) + c * (97 ±0)`
// Estimated: `52737 + c * (2519 ±0) + r * (2602 ±0)`
// Minimum execution time: 16_250 nanoseconds.
Weight::from_ref_time(16_601_000)
.saturating_add(Weight::from_proof_size(52737))
Weight::from_parts(16_601_000, 0)
.saturating_add(Weight::from_parts(0, 52737))
// Standard Error: 763_853
.saturating_add(Weight::from_ref_time(27_869_355).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(27_869_355, 0).saturating_mul(c.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().writes(1))
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into())))
.saturating_add(Weight::from_proof_size(2519).saturating_mul(c.into()))
.saturating_add(Weight::from_proof_size(2602).saturating_mul(r.into()))
.saturating_add(Weight::from_parts(0, 2519).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(0, 2602).saturating_mul(r.into()))
}
}
@@ -53,10 +53,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 12_039 nanoseconds.
Weight::from_ref_time(12_378_049)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(12_378_049, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1
.saturating_add(Weight::from_ref_time(485).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(485, 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)
@@ -67,12 +67,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `314 + s * (2 ±0)`
// Estimated: `5821`
// Minimum execution time: 35_309 nanoseconds.
Weight::from_ref_time(28_767_595)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(28_767_595, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 572
.saturating_add(Weight::from_ref_time(73_429).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(73_429, 0).saturating_mul(s.into()))
// Standard Error: 5
.saturating_add(Weight::from_ref_time(1_487).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_487, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -85,12 +85,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `313`
// Estimated: `5821`
// Minimum execution time: 26_191 nanoseconds.
Weight::from_ref_time(19_850_530)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(19_850_530, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 440
.saturating_add(Weight::from_ref_time(68_426).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(68_426, 0).saturating_mul(s.into()))
// Standard Error: 4
.saturating_add(Weight::from_ref_time(1_505).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_505, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -105,12 +105,12 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `451 + s * (33 ±0)`
// Estimated: `8424`
// Minimum execution time: 39_875 nanoseconds.
Weight::from_ref_time(32_057_678)
.saturating_add(Weight::from_proof_size(8424))
Weight::from_parts(32_057_678, 0)
.saturating_add(Weight::from_parts(0, 8424))
// Standard Error: 715
.saturating_add(Weight::from_ref_time(84_736).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(84_736, 0).saturating_mul(s.into()))
// Standard Error: 7
.saturating_add(Weight::from_ref_time(1_511).saturating_mul(z.into()))
.saturating_add(Weight::from_parts(1_511, 0).saturating_mul(z.into()))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -122,10 +122,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `321 + s * (2 ±0)`
// Estimated: `5821`
// Minimum execution time: 25_536 nanoseconds.
Weight::from_ref_time(27_146_180)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(27_146_180, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 991
.saturating_add(Weight::from_ref_time(77_408).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(77_408, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -137,10 +137,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `313`
// Estimated: `5821`
// Minimum execution time: 17_409 nanoseconds.
Weight::from_ref_time(18_559_189)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(18_559_189, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 518
.saturating_add(Weight::from_ref_time(72_083).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(72_083, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -152,10 +152,10 @@ impl<T: frame_system::Config> pallet_multisig::WeightInfo for WeightInfo<T> {
// Measured: `517 + s * (1 ±0)`
// Estimated: `5821`
// Minimum execution time: 26_502 nanoseconds.
Weight::from_ref_time(28_258_573)
.saturating_add(Weight::from_proof_size(5821))
Weight::from_parts(28_258_573, 0)
.saturating_add(Weight::from_parts(0, 5821))
// Standard Error: 819
.saturating_add(Weight::from_ref_time(78_480).saturating_mul(s.into()))
.saturating_add(Weight::from_parts(78_480, 0).saturating_mul(s.into()))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `297`
// Estimated: `5544`
// Minimum execution time: 15_673 nanoseconds.
Weight::from_ref_time(16_101_000)
.saturating_add(Weight::from_proof_size(5544))
Weight::from_parts(16_101_000, 0)
.saturating_add(Weight::from_parts(0, 5544))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -70,8 +70,8 @@ impl<T: frame_system::Config> pallet_session::WeightInfo for WeightInfo<T> {
// Measured: `279`
// Estimated: `3033`
// Minimum execution time: 12_241 nanoseconds.
Weight::from_ref_time(12_552_000)
.saturating_add(Weight::from_proof_size(3033))
Weight::from_parts(12_552_000, 0)
.saturating_add(Weight::from_parts(0, 3033))
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -56,8 +56,8 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `49`
// Estimated: `1006`
// Minimum execution time: 7_105 nanoseconds.
Weight::from_ref_time(7_296_000)
.saturating_add(Weight::from_proof_size(1006))
Weight::from_parts(7_296_000, 0)
.saturating_add(Weight::from_parts(0, 1006))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
@@ -66,7 +66,7 @@ impl<T: frame_system::Config> pallet_timestamp::WeightInfo for WeightInfo<T> {
// Measured: `57`
// Estimated: `0`
// Minimum execution time: 3_270 nanoseconds.
Weight::from_ref_time(3_398_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(3_398_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
}
@@ -53,18 +53,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_752 nanoseconds.
Weight::from_ref_time(15_025_089)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(15_025_089, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 1_912
.saturating_add(Weight::from_ref_time(3_735_986).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(3_735_986, 0).saturating_mul(c.into()))
}
fn as_derivative() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 4_237 nanoseconds.
Weight::from_ref_time(4_392_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(4_392_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// The range of component `c` is `[0, 1000]`.
fn batch_all(c: u32, ) -> Weight {
@@ -72,18 +72,18 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_645 nanoseconds.
Weight::from_ref_time(16_082_395)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(16_082_395, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_061
.saturating_add(Weight::from_ref_time(3_918_503).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(3_918_503, 0).saturating_mul(c.into()))
}
fn dispatch_as() -> Weight {
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 7_613 nanoseconds.
Weight::from_ref_time(7_868_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(7_868_000, 0)
.saturating_add(Weight::from_parts(0, 0))
}
/// The range of component `c` is `[0, 1000]`.
fn force_batch(c: u32, ) -> Weight {
@@ -91,9 +91,9 @@ impl<T: frame_system::Config> pallet_utility::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 5_909 nanoseconds.
Weight::from_ref_time(11_406_668)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(11_406_668, 0)
.saturating_add(Weight::from_parts(0, 0))
// Standard Error: 2_399
.saturating_add(Weight::from_ref_time(3_759_278).saturating_mul(c.into()))
.saturating_add(Weight::from_parts(3_759_278, 0).saturating_mul(c.into()))
}
}
@@ -62,8 +62,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `38`
// Estimated: `4645`
// Minimum execution time: 23_601 nanoseconds.
Weight::from_ref_time(24_078_000)
.saturating_add(Weight::from_proof_size(4645))
Weight::from_parts(24_078_000, 0)
.saturating_add(Weight::from_parts(0, 4645))
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -74,8 +74,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `32`
// Estimated: `499`
// Minimum execution time: 23_225 nanoseconds.
Weight::from_ref_time(23_887_000)
.saturating_add(Weight::from_proof_size(499))
Weight::from_parts(23_887_000, 0)
.saturating_add(Weight::from_parts(0, 499))
.saturating_add(T::DbWeight::get().reads(1))
}
/// Storage: Benchmark Override (r:0 w:0)
@@ -85,8 +85,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: Benchmark Override (r:0 w:0)
/// Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured)
@@ -95,8 +95,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: PolkadotXcm SupportedVersion (r:0 w:1)
/// Proof Skipped: PolkadotXcm SupportedVersion (max_values: None, max_size: None, mode: Measured)
@@ -105,8 +105,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 8_434 nanoseconds.
Weight::from_ref_time(8_839_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(8_839_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: PolkadotXcm SafeXcmVersion (r:0 w:1)
@@ -116,8 +116,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `0`
// Estimated: `0`
// Minimum execution time: 2_484 nanoseconds.
Weight::from_ref_time(2_611_000)
.saturating_add(Weight::from_proof_size(0))
Weight::from_parts(2_611_000, 0)
.saturating_add(Weight::from_parts(0, 0))
.saturating_add(T::DbWeight::get().writes(1))
}
/// Storage: PolkadotXcm VersionNotifiers (r:1 w:1)
@@ -141,8 +141,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `38`
// Estimated: `7729`
// Minimum execution time: 28_465 nanoseconds.
Weight::from_ref_time(29_023_000)
.saturating_add(Weight::from_proof_size(7729))
Weight::from_parts(29_023_000, 0)
.saturating_add(Weight::from_parts(0, 7729))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(5))
}
@@ -165,8 +165,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `220`
// Estimated: `8470`
// Minimum execution time: 31_086 nanoseconds.
Weight::from_ref_time(31_385_000)
.saturating_add(Weight::from_proof_size(8470))
Weight::from_parts(31_385_000, 0)
.saturating_add(Weight::from_parts(0, 8470))
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -177,8 +177,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `95`
// Estimated: `9995`
// Minimum execution time: 13_701 nanoseconds.
Weight::from_ref_time(13_987_000)
.saturating_add(Weight::from_proof_size(9995))
Weight::from_parts(13_987_000, 0)
.saturating_add(Weight::from_parts(0, 9995))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -189,8 +189,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `99`
// Estimated: `9999`
// Minimum execution time: 13_723 nanoseconds.
Weight::from_ref_time(14_166_000)
.saturating_add(Weight::from_proof_size(9999))
Weight::from_parts(14_166_000, 0)
.saturating_add(Weight::from_parts(0, 9999))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -201,8 +201,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `106`
// Estimated: `12481`
// Minimum execution time: 15_381 nanoseconds.
Weight::from_ref_time(16_770_000)
.saturating_add(Weight::from_proof_size(12481))
Weight::from_parts(16_770_000, 0)
.saturating_add(Weight::from_parts(0, 12481))
.saturating_add(T::DbWeight::get().reads(5))
}
/// Storage: PolkadotXcm VersionNotifyTargets (r:2 w:1)
@@ -222,8 +222,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `106`
// Estimated: `10041`
// Minimum execution time: 27_952 nanoseconds.
Weight::from_ref_time(28_321_000)
.saturating_add(Weight::from_proof_size(10041))
Weight::from_parts(28_321_000, 0)
.saturating_add(Weight::from_parts(0, 10041))
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(3))
}
@@ -234,8 +234,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `136`
// Estimated: `7561`
// Minimum execution time: 8_516 nanoseconds.
Weight::from_ref_time(8_922_000)
.saturating_add(Weight::from_proof_size(7561))
Weight::from_parts(8_922_000, 0)
.saturating_add(Weight::from_parts(0, 7561))
.saturating_add(T::DbWeight::get().reads(3))
}
/// Storage: PolkadotXcm VersionNotifyTargets (r:4 w:2)
@@ -245,8 +245,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `106`
// Estimated: `10006`
// Minimum execution time: 16_615 nanoseconds.
Weight::from_ref_time(17_074_000)
.saturating_add(Weight::from_proof_size(10006))
Weight::from_parts(17_074_000, 0)
.saturating_add(Weight::from_parts(0, 10006))
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(2))
}
@@ -267,8 +267,8 @@ impl<T: frame_system::Config> pallet_xcm::WeightInfo for WeightInfo<T> {
// Measured: `112`
// Estimated: `15027`
// Minimum execution time: 36_726 nanoseconds.
Weight::from_ref_time(37_319_000)
.saturating_add(Weight::from_proof_size(15027))
Weight::from_parts(37_319_000, 0)
.saturating_add(Weight::from_parts(0, 15027))
.saturating_add(T::DbWeight::get().reads(9))
.saturating_add(T::DbWeight::get().writes(4))
}
@@ -65,7 +65,7 @@ impl<Call> XcmWeightInfo<Call> for BridgeHubKusamaXcmWeight<Call> {
// Currently there is no trusted reserve
fn reserve_asset_deposited(_assets: &MultiAssets) -> Weight {
// TODO: hardcoded - fix https://github.com/paritytech/cumulus/issues/1974
Weight::from_ref_time(1_000_000_000 as u64)
Weight::from_parts(1_000_000_000 as u64, 0)
}
fn receive_teleported_asset(assets: &MultiAssets) -> Weight {
assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::receive_teleported_asset())
@@ -123,7 +123,7 @@ impl<Call> XcmWeightInfo<Call> for BridgeHubKusamaXcmWeight<Call> {
fn deposit_asset(assets: &MultiAssetFilter, _dest: &MultiLocation) -> Weight {
// Hardcoded till the XCM pallet is fixed
let hardcoded_weight = Weight::from_ref_time(1_000_000_000 as u64);
let hardcoded_weight = Weight::from_parts(1_000_000_000 as u64, 0);
let weight = assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset());
hardcoded_weight.min(weight)
}
@@ -51,14 +51,14 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: System Account (r:1 w:1)
// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
pub(crate) fn withdraw_asset() -> Weight {
Weight::from_ref_time(18_301_000 as u64)
Weight::from_parts(18_301_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)
// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
pub(crate) fn transfer_asset() -> Weight {
Weight::from_ref_time(29_321_000 as u64)
Weight::from_parts(29_321_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -77,17 +77,17 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn transfer_reserve_asset() -> Weight {
Weight::from_ref_time(50_754_000 as u64)
Weight::from_parts(50_754_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(8 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
pub(crate) fn receive_teleported_asset() -> Weight {
Weight::from_ref_time(3_814_000 as u64)
Weight::from_parts(3_814_000 as u64, 0)
}
// Storage: System Account (r:1 w:1)
// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
pub(crate) fn deposit_asset() -> Weight {
Weight::from_ref_time(21_596_000 as u64)
Weight::from_parts(21_596_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -106,7 +106,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn deposit_reserve_asset() -> Weight {
Weight::from_ref_time(45_534_000 as u64)
Weight::from_parts(45_534_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -123,7 +123,7 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn initiate_teleport() -> Weight {
Weight::from_ref_time(26_876_000 as u64)
Weight::from_parts(26_876_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -61,39 +61,39 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn report_holding() -> Weight {
Weight::from_ref_time(30_320_000 as u64)
Weight::from_parts(30_320_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
pub(crate) fn buy_execution() -> Weight {
Weight::from_ref_time(2_776_000 as u64)
Weight::from_parts(2_776_000 as u64, 0)
}
// Storage: PolkadotXcm Queries (r:1 w:0)
// Proof Skipped: PolkadotXcm Queries (max_values: None, max_size: None, mode: Measured)
pub(crate) fn query_response() -> Weight {
Weight::from_ref_time(10_396_000 as u64)
Weight::from_parts(10_396_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
pub(crate) fn transact() -> Weight {
Weight::from_ref_time(11_646_000 as u64)
Weight::from_parts(11_646_000 as u64, 0)
}
pub(crate) fn refund_surplus() -> Weight {
Weight::from_ref_time(2_853_000 as u64)
Weight::from_parts(2_853_000 as u64, 0)
}
pub(crate) fn set_error_handler() -> Weight {
Weight::from_ref_time(2_746_000 as u64)
Weight::from_parts(2_746_000 as u64, 0)
}
pub(crate) fn set_appendix() -> Weight {
Weight::from_ref_time(2_742_000 as u64)
Weight::from_parts(2_742_000 as u64, 0)
}
pub(crate) fn clear_error() -> Weight {
Weight::from_ref_time(2_750_000 as u64)
Weight::from_parts(2_750_000 as u64, 0)
}
pub(crate) fn descend_origin() -> Weight {
Weight::from_ref_time(3_512_000 as u64)
Weight::from_parts(3_512_000 as u64, 0)
}
pub(crate) fn clear_origin() -> Weight {
Weight::from_ref_time(2_710_000 as u64)
Weight::from_parts(2_710_000 as u64, 0)
}
// Storage: ParachainInfo ParachainId (r:1 w:0)
// Proof: ParachainInfo ParachainId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -108,19 +108,19 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn report_error() -> Weight {
Weight::from_ref_time(23_834_000 as u64)
Weight::from_parts(23_834_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: PolkadotXcm AssetTraps (r:1 w:1)
// Proof Skipped: PolkadotXcm AssetTraps (max_values: None, max_size: None, mode: Measured)
pub(crate) fn claim_asset() -> Weight {
Weight::from_ref_time(14_091_000 as u64)
Weight::from_parts(14_091_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(2_702_000 as u64)
Weight::from_parts(2_702_000 as u64, 0)
}
// Storage: PolkadotXcm VersionNotifyTargets (r:1 w:1)
// Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured)
@@ -135,14 +135,14 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn subscribe_version() -> Weight {
Weight::from_ref_time(24_071_000 as u64)
Weight::from_parts(24_071_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: PolkadotXcm VersionNotifyTargets (r:0 w:1)
// Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured)
pub(crate) fn unsubscribe_version() -> Weight {
Weight::from_ref_time(4_648_000 as u64)
Weight::from_parts(4_648_000 as u64, 0)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: ParachainInfo ParachainId (r:1 w:0)
@@ -158,24 +158,24 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn initiate_reserve_withdraw() -> Weight {
Weight::from_ref_time(26_772_000 as u64)
Weight::from_parts(26_772_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
pub(crate) fn burn_asset() -> Weight {
Weight::from_ref_time(4_249_000 as u64)
Weight::from_parts(4_249_000 as u64, 0)
}
pub(crate) fn expect_asset() -> Weight {
Weight::from_ref_time(2_860_000 as u64)
Weight::from_parts(2_860_000 as u64, 0)
}
pub(crate) fn expect_origin() -> Weight {
Weight::from_ref_time(2_849_000 as u64)
Weight::from_parts(2_849_000 as u64, 0)
}
pub(crate) fn expect_error() -> Weight {
Weight::from_ref_time(2_692_000 as u64)
Weight::from_parts(2_692_000 as u64, 0)
}
pub(crate) fn expect_transact_status() -> Weight {
Weight::from_ref_time(2_886_000 as u64)
Weight::from_parts(2_886_000 as u64, 0)
}
// Storage: ParachainInfo ParachainId (r:1 w:0)
// Proof: ParachainInfo ParachainId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -190,12 +190,12 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn query_pallet() -> Weight {
Weight::from_ref_time(28_452_000 as u64)
Weight::from_parts(28_452_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
pub(crate) fn expect_pallet() -> Weight {
Weight::from_ref_time(4_257_000 as u64)
Weight::from_parts(4_257_000 as u64, 0)
}
// Storage: ParachainInfo ParachainId (r:1 w:0)
// Proof: ParachainInfo ParachainId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
@@ -210,23 +210,23 @@ impl<T: frame_system::Config> WeightInfo<T> {
// Storage: ParachainSystem PendingUpwardMessages (r:1 w:1)
// Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured)
pub(crate) fn report_transact_status() -> Weight {
Weight::from_ref_time(24_235_000 as u64)
Weight::from_parts(24_235_000 as u64, 0)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
pub(crate) fn clear_transact_status() -> Weight {
Weight::from_ref_time(2_749_000 as u64)
Weight::from_parts(2_749_000 as u64, 0)
}
pub(crate) fn set_topic() -> Weight {
Weight::from_ref_time(2_718_000 as u64)
Weight::from_parts(2_718_000 as u64, 0)
}
pub(crate) fn clear_topic() -> Weight {
Weight::from_ref_time(2_685_000 as u64)
Weight::from_parts(2_685_000 as u64, 0)
}
pub(crate) fn set_fees_mode() -> Weight {
Weight::from_ref_time(2_735_000 as u64)
Weight::from_parts(2_735_000 as u64, 0)
}
pub(crate) fn unpaid_execution() -> Weight {
Weight::from_ref_time(2_842_000 as u64)
Weight::from_parts(2_842_000 as u64, 0)
}
}