Fix unformatted files

This commit is contained in:
ValarDragon 2018-07-09 22:08:01 -07:00
parent 35e24fc340
commit 985037d2bd
4 changed files with 2 additions and 4 deletions

View File

@ -554,7 +554,6 @@ func getState(app *BaseApp, mode runTxMode) *state {
// txBytes may be nil in some cases, eg. in tests.
// Also, in the future we may support "internal" transactions.
// nolint: gocyclo
func (app *BaseApp) runTx(mode runTxMode, txBytes []byte, tx sdk.Tx) (result sdk.Result) {
//NOTE: GasWanted should be returned by the AnteHandler.
// GasUsed is determined by the GasMeter.

View File

@ -83,7 +83,6 @@ func checkValidator(t *testing.T, mapp *mock.App, keeper Keeper,
return validator
}
func checkDelegation(
t *testing.T, mapp *mock.App, keeper Keeper, delegatorAddr,
validatorAddr sdk.AccAddress, expFound bool, expShares sdk.Rat,