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

Commit

Permalink
Use saturating add for alliance::disband witness data (#12418)
Browse files Browse the repository at this point in the history
  • Loading branch information
muharem committed Oct 4, 2022
1 parent 07e5ec5 commit d11dd02
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 d11dd02

Please sign in to comment.