docs: Update documentation specifying the behaviour of CancelUnbondingDelegation on jailed validators (#19415)

This commit is contained in:
Likhita Polavarapu 2024-02-13 18:13:36 +05:30 committed by GitHub
parent 8c002c6249
commit 26d30f2111
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -704,7 +704,7 @@ When this message is processed the following actions occur:
### MsgCancelUnbondingDelegation
The `MsgCancelUnbondingDelegation` message allows delegators to cancel the `unbondingDelegation` entry and delegate back to a previous validator.
The `MsgCancelUnbondingDelegation` message allows delegators to cancel the `unbondingDelegation` entry and delegate back to a previous validator. However, please note that this feature does not support canceling unbond delegations from jailed validators.
```protobuf reference
https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc1/proto/cosmos/staking/v1beta1/tx.proto#L38-L42
@ -719,6 +719,7 @@ This message is expected to fail if:
* the `unbondingDelegation` entry is already processed.
* the `cancel unbonding delegation` amount is greater than the `unbondingDelegation` entry balance.
* the `cancel unbonding delegation` height doesn't exist in the `unbondingDelegationQueue` of the delegator.
* the `unbondingDelegation` is from a jailed validator.
When this message is processed the following actions occur: