File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ static secp256k1_pedersen_commitment** makeCommitmentsArray(int size) { return !
24
24
static void setCommitmentsArray(secp256k1_pedersen_commitment** a, secp256k1_pedersen_commitment* v, int i) { if (a) a[i] = v; }
25
25
static secp256k1_pedersen_commitment* getCommitmentsArray(secp256k1_pedersen_commitment** a, int i) { return !a ? NULL : a[i]; }
26
26
static void freeCommitmentsArray(secp256k1_pedersen_commitment** a) { if (a) free(a); }
27
- int sum_blind_generator_blind (uint64_t v, const unsigned char* ra, unsigned char* r) {
27
+ int blind_value_generator_blind_sum (uint64_t v, const unsigned char* ra, unsigned char* r) {
28
28
int success = 0;
29
29
int overflow = 0;
30
30
secp256k1_scalar tmp, vra;
@@ -551,7 +551,7 @@ func CommitmentToPublicKey(
551
551
* err == nil if success
552
552
*
553
553
*/
554
- func SumBlindGeneratorBlind (
554
+ func BlindValueGeneratorBlindSum (
555
555
v uint64 ,
556
556
ra []byte ,
557
557
r []byte ,
@@ -560,7 +560,7 @@ func SumBlindGeneratorBlind(
560
560
err error ,
561
561
) {
562
562
copy (result [:], r )
563
- if 1 != C .sum_blind_generator_blind (
563
+ if 1 != C .blind_value_generator_blind_sum (
564
564
C .uint64_t (v ),
565
565
cBuf (ra ),
566
566
cBuf (result [:]),
You can’t perform that action at this time.
0 commit comments