liquidjs-lib
Advanced tools
Comparing version 5.1.6 to 5.1.7
{ | ||
"name": "liquidjs-lib", | ||
"version": "5.1.6", | ||
"version": "5.1.7", | ||
"description": "Client-side Liquid JavaScript library", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -188,3 +188,3 @@ 'use strict'; | ||
const unconfidential = payload.slice(35, payload.length); | ||
const versionBuf = new Uint8Array(1); | ||
const versionBuf = Buffer.alloc(1); | ||
versionBuf[0] = prefix; | ||
@@ -215,3 +215,3 @@ const unconfidentialAddressBuffer = Buffer.concat([ | ||
if (blindingKey.length > 33) throw new TypeError('Blinding key is too long'); | ||
const prefixBuf = new Uint8Array(2); | ||
const prefixBuf = Buffer.alloc(2); | ||
prefixBuf[0] = network.confidentialPrefix; | ||
@@ -218,0 +218,0 @@ prefixBuf[1] = prefix; |
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
233527