diff --git a/src/spec.rs b/src/spec.rs index 2b4222a5..36ce59d7 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -101,8 +101,6 @@ pub(crate) fn ka_orchard(sk: &pallas::Scalar, b: &pallas::Point) -> pallas::Poin /// /// [concreteextractorpallas]: https://zips.z.cash/protocol/nu5.pdf#concreteextractorpallas pub(crate) fn extract_p(point: &pallas::Point) -> pallas::Base { - // TODO: Should we return the actual bits in a Vec, or allow the caller to use - // PrimeField::to_le_bits on the returned pallas::Base? if let Some((x, _)) = point.to_affine().get_xy().into() { x } else {