-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Conversation
fn set_heap_pages() -> Weight { | ||
(2_347_000 as Weight) | ||
(5_134_000 as Weight) | ||
.saturating_add(T::DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(T::DbWeight::get().writes(2 as Weight)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
x2
fn external_propose_majority() -> Weight { | ||
(1_250_000 as Weight) | ||
(4_161_000 as Weight) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) | ||
} | ||
// Storage: Democracy NextExternal (r:0 w:1) | ||
fn external_propose_default() -> Weight { | ||
(1_254_000 as Weight) | ||
(3_982_000 as Weight) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) | ||
} | ||
// Storage: Democracy NextExternal (r:1 w:1) | ||
// Storage: Democracy ReferendumCount (r:1 w:1) | ||
// Storage: Democracy ReferendumInfoOf (r:0 w:1) | ||
fn fast_track() -> Weight { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noticeable
fn on_initialize_periodic_named_resolved(s: u32, ) -> Weight { | ||
(675_000 as Weight) | ||
// Standard Error: 31_000 | ||
.saturating_add((24_318_000 as Weight).saturating_mul(s as Weight)) | ||
(2_739_000 as Weight) | ||
// Standard Error: 32_000 | ||
.saturating_add((26_230_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(T::DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(T::DbWeight::get().reads((3 as Weight).saturating_mul(s as Weight))) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noticeable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this base weight is insignificant
fn on_initialize_periodic_resolved(s: u32, ) -> Weight { | ||
(0 as Weight) | ||
// Standard Error: 30_000 | ||
.saturating_add((22_043_000 as Weight).saturating_mul(s as Weight)) | ||
(1_851_000 as Weight) | ||
// Standard Error: 29_000 | ||
.saturating_add((23_826_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(T::DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(T::DbWeight::get().reads((3 as Weight).saturating_mul(s as Weight))) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0 to 1.8m
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this base weight is insignificant
/// The range of component `s` is `[1, 50]`. | ||
fn on_initialize_resolved(s: u32, ) -> Weight { | ||
(248_000 as Weight) | ||
// Standard Error: 28_000 | ||
.saturating_add((18_646_000 as Weight).saturating_mul(s as Weight)) | ||
(4_340_000 as Weight) | ||
// Standard Error: 33_000 | ||
.saturating_add((20_124_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(T::DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(T::DbWeight::get().reads((2 as Weight).saturating_mul(s as Weight))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noticeable
impl<T: frame_system::Config> runtime_parachains::disputes::WeightInfo for WeightInfo<T> { | ||
// Storage: ParasDisputes Frozen (r:0 w:1) | ||
fn force_unfreeze() -> Weight { | ||
(659_000 as Weight) | ||
(3_428_000 as Weight) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noticeable
fn force_set_current_head(s: u32, ) -> Weight { | ||
(9_108_000 as Weight) | ||
(0 as Weight) | ||
// Standard Error: 0 | ||
.saturating_add((1_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(T::DbWeight::get().writes(1 as Weight)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
9m -> 0
fn force_note_new_head(s: u32, ) -> Weight { | ||
(12_655_000 as Weight) | ||
(0 as Weight) | ||
// Standard Error: 0 | ||
.saturating_add((1_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(T::DbWeight::get().reads(1 as Weight)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
12m -> 0
* westend: update weights * kusama: update weights * polkadot: update weights * rococo: update weights
No description provided.