staking: Fix potential division-by-zero

`v.DelegatorShares` can be 0 so don't allow division in that case.
This commit is contained in:
Chirantan Ekbote 2022-08-25 17:51:17 +09:00 committed by Joel Smith
parent 243e1e360a
commit b0d283fd00
1 changed files with 3 additions and 0 deletions

View File

@ -316,6 +316,9 @@ func (v Validator) InvalidExRate() bool {
// calculate the token worth of provided shares
func (v Validator) TokensFromShares(shares sdk.Dec) math.LegacyDec {
if v.DelegatorShares.IsZero() {
return math.LegacyZeroDec()
}
return (shares.MulInt(v.Tokens)).Quo(v.DelegatorShares)
}