-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gofumpt v3.2.x #1735
gofumpt v3.2.x #1735
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -339,7 +339,8 @@ func (k Keeper) WriteOpenAckChannel( | |
} | ||
|
||
// ChanOpenConfirm is called by the counterparty module to close their end of the | ||
// channel, since the other end has been closed. | ||
// | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we please remove all the white spaces that have been added? I think gofumpt formatted it like this because there was a single empty space at the beginning of the line... |
||
// channel, since the other end has been closed. | ||
func (k Keeper) ChanOpenConfirm( | ||
ctx sdk.Context, | ||
portID, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,8 @@ func (app *SimApp) ExportAppStateAndValidators( | |
|
||
// prepare for fresh start at zero height | ||
// NOTE zero height genesis is a temporary feature which will be deprecated | ||
// in favour of export at a block height | ||
// | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment here. |
||
// in favour of export at a block height | ||
func (app *SimApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []string) { | ||
applyAllowedAddrs := false | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is
misspell
removed? Is it not needed anymore becausegofumpt
also checks for spelling errors?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is just kind of irrelevant and run by golangci-lint