secp256k1zkp 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6632f502fccfaa88166dbbb79cf2bdaa7c5d9a0d
4
- data.tar.gz: dc013b979cf208acede292a2daf211fff9b0ccca
3
+ metadata.gz: 90d4e882b70ea376377b9388e8c1020e06fbb696
4
+ data.tar.gz: 36d462d75514cf76ac8a366d4bbdcc7838e706f0
5
5
  SHA512:
6
- metadata.gz: 3a5b861e9d4770a5103d7ef5d7c65cba27253acecc93b569e02ecd9013b3b69465ca9762df1701c72cb74d364a0897f664294d9f9bf428cfd90818e5eefd85a4
7
- data.tar.gz: 369ef566fcc2917758c9449feb5b81f3d10dc73d46499980cca5d63cf632c1e0aa0e283bf6f0fcab1c9b34116388a70c4ec3883462381a6574a631d134a9b7c8
6
+ metadata.gz: fe741e6e78fd7fcb300e37725bc8b9ac3320b44e85af75ee8438cec203947bae476d8e5ba145c2dba4608684baceb8e8d043efd48f22892e86dca2fb503c269f
7
+ data.tar.gz: 4b6990004b8888bf9ae57accded553c75338c9d7096f4d63210fad622f9eb03e75de4c78cca3a1dab2e0ca232bfe6565f7c1b9c8aa19b359c4b57046abac5c19
@@ -379,6 +379,7 @@ static VALUE dm_context_pedersen_blind_sum(VALUE self, VALUE blinds_in, VALUE no
379
379
  {
380
380
  rb_struct_context *context;
381
381
  long blinds_in_size;
382
+ long i;
382
383
  rb_struct_blind_factor_type result = {
383
384
  0,
384
385
  };
@@ -393,7 +394,7 @@ static VALUE dm_context_pedersen_blind_sum(VALUE self, VALUE blinds_in, VALUE no
393
394
  return Qnil;
394
395
  }
395
396
  const unsigned char *blinds[blinds_in_size];
396
- for (long i = 0; i < blinds_in_size; ++i)
397
+ for (i = 0; i < blinds_in_size; ++i)
397
398
  {
398
399
  VALUE blind_factor = rb_ary_entry(blinds_in, i);
399
400
  SafeStringValue(blind_factor);
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Secp256k1Zkp
4
4
 
5
- VERSION = '0.9.1'.freeze
5
+ VERSION = '0.9.2'.freeze
6
6
 
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: secp256k1zkp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - jokenshi