From 9ea722b035f32d3b5671e71a8664979ca127b2ea Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Wed, 21 Aug 2024 09:59:26 -0500 Subject: [PATCH] Formatting (#109) This PR fixes a formatting issue. --- examples/ringct.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ringct.rs b/examples/ringct.rs index 3ef28c6..ca91d8c 100644 --- a/examples/ringct.rs +++ b/examples/ringct.rs @@ -30,7 +30,7 @@ mod test { // Value commitments use the Triptych `G` generator for masks, and need another component for values // In practice it's essential that `G` and `H` have no efficiently-computable discrete logarithm relationship - // For this example, we'll just make it random; in the real world, you'd use a verifiable hash-based construction + // For this example, we'll just make it random; in the real world, you'd use a verifiable construction let H = RistrettoPoint::random(&mut rng); // All output verification keys and value commitments (except ours) look random to us, so just make them random!