Skip to content

Commit

Permalink
Use saturating add for alliance::disband witness data (paritytech#12418)
Browse files Browse the repository at this point in the history
  • Loading branch information
muharem authored and ark0f committed Feb 27, 2023
1 parent c869d36 commit da6b852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/alliance/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ pub mod pallet {
#[pallet::weight(T::WeightInfo::disband(
witness.voting_members,
witness.ally_members,
witness.voting_members + witness.ally_members,
witness.voting_members.saturating_add(witness.ally_members),
))]
pub fn disband(
origin: OriginFor<T>,
Expand Down

0 comments on commit da6b852

Please sign in to comment.