Sacrifice to the linter gods

This commit is contained in:
Jack Zampolin 2018-12-10 18:32:13 -08:00
parent 5c3bef97fb
commit 96f8e340c1
1 changed files with 7 additions and 7 deletions

View File

@ -663,8 +663,8 @@ func doDelegate(t *testing.T, port, seed, name, password string,
Sequence: sequence,
},
Delegations: []msgDelegationsInput{msgDelegationsInput{
DelegatorAddr: sdk.AccAddress(delAddr).String(),
ValidatorAddr: sdk.ValAddress(valAddr).String(),
DelegatorAddr: delAddr.String(),
ValidatorAddr: valAddr.String(),
Delegation: sdk.NewInt64Coin(stakeTypes.DefaultBondDenom, amount),
}},
}
@ -704,8 +704,8 @@ func doBeginUnbonding(t *testing.T, port, seed, name, password string,
Sequence: sequence,
},
BeginUnbondings: []msgBeginUnbondingInput{msgBeginUnbondingInput{
DelegatorAddr: sdk.AccAddress(delAddr).String(),
ValidatorAddr: sdk.ValAddress(valAddr).String(),
DelegatorAddr: delAddr.String(),
ValidatorAddr: valAddr.String(),
SharesAmount: fmt.Sprintf("%d", amount),
}},
}
@ -746,9 +746,9 @@ func doBeginRedelegation(t *testing.T, port, seed, name, password string,
Sequence: sequence,
},
BeginRedelegates: []msgBeginRedelegateInput{msgBeginRedelegateInput{
DelegatorAddr: sdk.AccAddress(delAddr).String(),
ValidatorSrcAddr: sdk.ValAddress(valSrcAddr).String(),
ValidatorDstAddr: sdk.ValAddress(valDstAddr).String(),
DelegatorAddr: delAddr.String(),
ValidatorSrcAddr: valSrcAddr.String(),
ValidatorDstAddr: valDstAddr.String(),
SharesAmount: fmt.Sprintf("%d", amount),
}},
}