We can use `where` to make some code more readable, mainly `batch.rs` For example: ```rust impl<S: SpendAuth, B: Binding<Scalar = S::Scalar, Point = S::Point>> Default for Verifier<S, B> { ``` could be ```rust 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.