fix: revise to call Begin/EndRecheck even though mem.Size() is 0#162
Merged
jinsan-line merged 2 commits intoFinschia:feat/perffrom Jan 13, 2021
jinsan-line:begin-recheck
Merged
fix: revise to call Begin/EndRecheck even though mem.Size() is 0#162jinsan-line merged 2 commits intoFinschia:feat/perffrom jinsan-line:begin-recheck
mem.Size() is 0#162jinsan-line merged 2 commits intoFinschia:feat/perffrom
jinsan-line:begin-recheck
Conversation
Contributor
|
Would you explain why we should call |
wetcod
reviewed
Jan 12, 2021
kukugi
approved these changes
Jan 13, 2021
| mem.metrics.Size.Set(float64(mem.Size())) | ||
|
|
||
| return nil | ||
| return err |
There was a problem hiding this comment.
you can omit err because you define variable in return type. so it can be just return
Author
There was a problem hiding this comment.
I'm trying to avoid naked return. cc: @wetcod
https://github.com/golang/go/wiki/CodeReviewComments#naked-returns
Author
wetcod
approved these changes
Jan 13, 2021
tnasu
approved these changes
Jan 13, 2021
5 tasks
50 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related with: https://github.com/line/link/issues/1151, #160
Description
W/ #160
CONTRACT, we need to callBegin/EndRecheckeven thoughmem.Size()is 0. IMHO, it's conceptually expected behavior to callBegin/EndRecheckeven thoughmem.Size()is 0. We could compare it w/Begine/EndBlockthat are called even though there is nodeliverTx.What I've got from the team
mem.config.Recheckistrue, callBegin/EndRecheck.mem.config.Recheckisfalsebutmem.config.Recheckisfalse.mem.config.Recheckis configuredtruefor all phase and all chain.falseand also it seems to be almost impossible.mem.config.Recheckor not w/ other issue/PR.Need to discussHow about removingmem.config.Recheckto restrictmisuseit?cosmos-sdkassumes thatrecheckis working in terms of managing accountsequence. ~~If we disablerecheck, we might get problems related with accountsequence.The PR could look like weird because it callsBegin/EndRecheckeven whenmem.config.Recheckisfalse.We actually need to call these even whenmem.config.Recheckisfalse.I'd like to hear the team's opinion.For contributor use:
docs/) and code commentsFiles changedin the Github PR explorer