-
Notifications
You must be signed in to change notification settings - Fork 99
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
message/validation: rename package #1864
Comments
Hello my name is Bavya and I am a software engineering student looking for a good first issue. I would like to try resolving this issue. Can I work on this if no one else is assigned yet? |
@y0sher @moshe-blox @iurii-ssv @olegshmuelov can you please share your opinion on this, whether you agree? |
@BavyaMittal Hi Bavya, thanks for your suggestion, and sorry for the delay. I need to sync with the teammates to decide whether we are going to do this |
Taking a step back to think about Golang package-naming in general - it's designed such that you
so, instead of just renaming
But if we don't want to restructure the packages involved, using |
Perhaps, we should agree on a project-wide convention before implementing this because message validation is not the only place where we need to think about this. @iurii-ssv I agree with what you said about the message validation, indeed we can move everything to the
|
Is your feature request related to a problem? Please describe.
Currently, message validation is located under
.../message/validation
the package is calledvalidation
. When we import it, it's referenced asvalidation
and it might not be clear what validation is meantDescribe the solution you'd like
Perhaps something like
msgvalidation
would be clearer and wouldn't increase the name size by a lotDescribe alternatives you've considered
Call it
messagevalidation
but it seems quite longAdditional context
We probably don't need to touch genesis message validation as we will remove it, this will also decrease the amount of conflicts with the PR that removes pre-fork code
The text was updated successfully, but these errors were encountered: