bip174-liquid
Advanced tools
Comparing version 1.0.2-liquid to 1.0.3
{ | ||
"name": "bip174-liquid", | ||
"version": "1.0.2-liquid", | ||
"version": "1.0.3", | ||
"description": "", | ||
@@ -33,5 +33,6 @@ "main": "src/lib/psbt.js", | ||
"devDependencies": { | ||
"@types/node": "12.0.8", | ||
"@types/node": "^15.12.4", | ||
"@types/tape": "4.2.33", | ||
"buffer-json": "^2.0.0", | ||
"liquidjs-lib": "^5.1.12", | ||
"nyc": "^14.1.1", | ||
@@ -42,4 +43,3 @@ "prettier": "^1.18.2", | ||
"tslint": "5.17.0", | ||
"typescript": "3.5.2", | ||
"liquidjs-lib": "^5.1.12" | ||
"typescript": "3.5.2" | ||
}, | ||
@@ -46,0 +46,0 @@ "author": "Vulpem Ventures", |
@@ -74,5 +74,7 @@ 'use strict'; | ||
const rangeProofLen = rangeProof ? rangeProof.length : 0; | ||
const varintRangeProofLen = varuint.encodingLength(rangeProofLen); | ||
const varintRangeProofLen = | ||
nonceLen === 1 ? 0 : varuint.encodingLength(rangeProofLen); | ||
const surjectionProofLen = surjectionProof ? surjectionProof.length : 0; | ||
const varintSurjectionProofLen = varuint.encodingLength(surjectionProofLen); | ||
const varintSurjectionProofLen = | ||
nonceLen === 1 ? 0 : varuint.encodingLength(surjectionProofLen); | ||
const result = Buffer.allocUnsafe( | ||
@@ -79,0 +81,0 @@ assetLen + |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
92621
2009
0