addressed comments

This commit is contained in:
Sunny Aggarwal 2018-11-03 22:53:04 -07:00
parent 0fc536a4af
commit 4c3ac3f512
2 changed files with 14 additions and 0 deletions

View File

@ -341,6 +341,13 @@ Additionally, as you can get all the outgoing redelegations from a particular va
To get previous redelegation(s) status on past blocks, try adding the `--height` flag.
##### Query Delegations To Validator
You can also query all of the delegations to a particular validator:
```bash
gaiacli query delegations-to <account_cosmosval>
```
### Governance
Governance is the process from which users in the Cosmos Hub can come to consensus on software upgrades, parameters of the mainnet or on custom text proposals. This is done through voting on proposals, which will be submitted by `Atom` holders on the mainnet.

View File

@ -96,6 +96,13 @@ func TestDelegation(t *testing.T) {
resVals = keeper.GetDelegatorValidators(ctx, addrDels[1], 4)
require.Equal(t, 3, len(resVals))
resDels := keeper.GetValidatorDelegations(ctx, addrVals[0])
require.Len(t, resDels, 2)
resDels = keeper.GetValidatorDelegations(ctx, addrVals[1])
require.Len(t, resDels, 2)
resDels = keeper.GetValidatorDelegations(ctx, addrVals[2])
require.Len(t, resDels, 2)
for i := 0; i < 3; i++ {
resVal, err := keeper.GetDelegatorValidator(ctx, addrDels[0], addrVals[i])