From dec87023dd111339dd62565a263e5afe144b5c99 Mon Sep 17 00:00:00 2001 From: samkim-crypto Date: Mon, 29 Apr 2024 11:18:57 +0900 Subject: [PATCH] minor update to the comments --- zk-sdk/src/range_proof/util.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zk-sdk/src/range_proof/util.rs b/zk-sdk/src/range_proof/util.rs index 4a76543d475bc0..3d2b50ccb6e993 100644 --- a/zk-sdk/src/range_proof/util.rs +++ b/zk-sdk/src/range_proof/util.rs @@ -1,6 +1,7 @@ /// Utility functions for Bulletproofs. /// -/// The code is copied from https://github.com/dalek-cryptography/bulletproofs for now... +/// The code is adapted from the `utility` module in the dalek bulletproof implementation +/// https://github.com/dalek-cryptography/bulletproofs. use curve25519_dalek::scalar::Scalar; /// Represents a degree-1 vector polynomial \\(\mathbf{a} + \mathbf{b} \cdot x\\).