Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

[benchmarks] pr with weights Collectives #2025

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
provide veto method for trait
  • Loading branch information
muharem committed Dec 22, 2022
commit 007f97c6aa35d65452a566fbe0c4620533ae7159
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ impl<T: frame_system::Config> pallet_alliance::WeightInfo for WeightInfo<T> {
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}

// not used
fn veto(_p: u32, ) -> Weight {
Weight::from_ref_time(100_000_000)
}

// Storage: Alliance Members (r:1 w:0)
// Storage: AllianceMotion Voting (r:1 w:1)
// Storage: AllianceMotion Members (r:1 w:0)
Expand Down