Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
frame-system weights: Remove set_changes_trie_config. (paritytech#1…
Browse files Browse the repository at this point in the history
…0470)

This dispatchable was removed, so we don't need it anymore.
  • Loading branch information
bkchr authored and AurevoirXavier committed Aug 12, 2022
1 parent 69ac763 commit 8971d01
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions frame/system/src/weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pub trait WeightInfo {
fn remark(b: u32, ) -> Weight;
fn remark_with_event(b: u32, ) -> Weight;
fn set_heap_pages() -> Weight;
fn set_changes_trie_config() -> Weight;
fn set_storage(i: u32, ) -> Weight;
fn kill_storage(i: u32, ) -> Weight;
fn kill_prefix(p: u32, ) -> Weight;
Expand All @@ -72,13 +71,6 @@ impl<T: crate::Config> WeightInfo for SubstrateWeight<T> {
(1_891_000 as Weight)
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: System Digest (r:1 w:1)
// Storage: unknown [0x3a6368616e6765735f74726965] (r:0 w:1)
fn set_changes_trie_config() -> Weight {
(7_370_000 as Weight)
.saturating_add(T::DbWeight::get().reads(1 as Weight))
.saturating_add(T::DbWeight::get().writes(2 as Weight))
}
// Storage: Skipped Metadata (r:0 w:0)
fn set_storage(i: u32, ) -> Weight {
(0 as Weight)
Expand Down Expand Up @@ -119,13 +111,6 @@ impl WeightInfo for () {
(1_891_000 as Weight)
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
}
// Storage: System Digest (r:1 w:1)
// Storage: unknown [0x3a6368616e6765735f74726965] (r:0 w:1)
fn set_changes_trie_config() -> Weight {
(7_370_000 as Weight)
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
}
// Storage: Skipped Metadata (r:0 w:0)
fn set_storage(i: u32, ) -> Weight {
(0 as Weight)
Expand Down

0 comments on commit 8971d01

Please sign in to comment.