-
Notifications
You must be signed in to change notification settings - Fork 4
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
Scx1332/trying to run2 #31
base: main
Are you sure you want to change the base?
Conversation
… sometimes not) which resulted in mismatched hash in services.
…ory/ya-runtime-http-auth into scx1332/trying_to_run2
This reverts commit 93cb7c2.
@@ -72,3 +72,18 @@ impl Display for Addresses { | |||
write!(f, "]") | |||
} | |||
} | |||
|
|||
impl Addresses { | |||
pub fn gather_and_sort_addresses( |
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.
this is a very bad coding style.
-
Why associated function?
addr::Addresss:: gather_and_sort_addresses(...)
looks better than simpleaddr::gather_and_sort_addresses
. -
Why this is a public API for address?
this is a very specific name gather
and sort
. it does not look like something general to be done on adresses.
No description provided.