(self, rhs: Self)
| 108 | type Output = PointCommitment<G>; |
| 109 | |
| 110 | fn sub(self, rhs: Self) -> Self::Output { |
| 111 | PointCommitment { |
| 112 | x: (self.x.into_group() - rhs.x).into_affine(), |
| 113 | y: (self.y.into_group() - rhs.y).into_affine(), |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | impl<G: SWPoint> Add for &PointCommitmentWithOpening<G> { |
no outgoing calls
no test coverage detected