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

Insert claim_commission weight #13774

Merged
merged 1 commit into from
Apr 1, 2023
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion frame/nomination-pools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2617,7 +2617,7 @@ pub mod pallet {
/// commission is paid out and added to total claimed commission`. Total pending commission
/// is reset to zero. the current.
#[pallet::call_index(20)]
#[pallet::weight(0)]
#[pallet::weight(T::WeightInfo::claim_commission())]
pub fn claim_commission(origin: OriginFor<T>, pool_id: PoolId) -> DispatchResult {
let who = ensure_signed(origin)?;
Self::do_claim_commission(who, pool_id)
Expand Down