Skip to content
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

Use where to make code more readable #3

Open
conradoplg opened this issue Nov 19, 2021 · 0 comments
Open

Use where to make code more readable #3

conradoplg opened this issue Nov 19, 2021 · 0 comments

Comments

@conradoplg
Copy link
Contributor

We can use where to make some code more readable, mainly batch.rs

For example:

impl<S: SpendAuth, B: Binding<Scalar = S::Scalar, Point = S::Point>> Default for Verifier<S, B> {

could be

impl<S, B> Default for Verifier<S, B>
where
    S: SpendAuth,
    B: Binding<Scalar = S::Scalar, Point = S::Point>,
{

Improve this and any other similar instances, if any.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant