zkjson 0.1.12 → 0.1.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,7 +14,7 @@ contract ZKRollup is ZKQuery {
14
14
  address public committer;
15
15
  uint public root;
16
16
 
17
- function _verifyRU(uint[] calldata zkp) internal view returns (bool) {
17
+ function _verifyRU(uint[] calldata zkp) private view returns (bool) {
18
18
  uint[2] memory _pA;
19
19
  uint[2][2] memory _pB;
20
20
  uint[2] memory _pC;
@@ -48,7 +48,7 @@ contract ZKRollup is ZKQuery {
48
48
  return root;
49
49
  }
50
50
 
51
- function verifyRU(uint[] calldata zkp) public view returns (bool) {
51
+ function verifyRU(uint[] calldata zkp) private view returns (bool) {
52
52
  return _verifyRU(zkp);
53
53
  }
54
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zkjson",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Zero Knowledge Provable JSON",
5
5
  "main": "index.js",
6
6
  "license": "MIT",