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

Commit

Permalink
add claim_commission weight (#13774)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Bulat authored and pgherveou committed Apr 4, 2023
1 parent 0402155 commit e5f6b30
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit e5f6b30

Please sign in to comment.