Check self-delegation against provided minimum
This commit is contained in:
parent
4d3d387fe2
commit
79c33f03ee
|
@ -175,6 +175,10 @@ func (k msgServer) EditValidator(goCtx context.Context, msg *types.MsgEditValida
|
|||
return nil, types.ErrMinSelfDelegationDecreased
|
||||
}
|
||||
|
||||
if msg.MinSelfDelegation.GT(validator.Tokens) {
|
||||
return nil, types.ErrSelfDelegationBelowMinimum
|
||||
}
|
||||
|
||||
validator.MinSelfDelegation = (*msg.MinSelfDelegation)
|
||||
}
|
||||
|
||||
|
|
|
@ -120,6 +120,10 @@ func (msg MsgCreateValidator) ValidateBasic() error {
|
|||
return err
|
||||
}
|
||||
|
||||
if !msg.Value.Amount.GTE(msg.MinSelfDelegation) {
|
||||
return ErrSelfDelegationBelowMinimum
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue