You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Calculate and apply slash
let slash_amount = percentage.mul_floor(delegation.amount);
// TODO: IF SLASH AMOUNT IS GREATER THAN DELEGATION AMOUNT
// TODO: WE WOULD RATHER TAKE THE ENTIRE DELEGATION, NO?
delegation.amount = delegation
.amount
.checked_sub(&slash_amount)
.ok_or(Error::<T>::InsufficientStakeRemaining)?;
if delegation.amount is less than slash then slash (max(slash_amount, delegation_amount))
The text was updated successfully, but these errors were encountered:
if delegation.amount is less than slash then slash (max(slash_amount, delegation_amount))
The text was updated successfully, but these errors were encountered: