Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bolt09

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bolt09 - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

CHANGELOG.md
# Versions
## 0.1.3
## 0.1.4

@@ -5,0 +5,0 @@ - `featureFlagDetails`: Add support for anchor channels and anchor zero fee transactions

@@ -8,3 +8,3 @@ {

"devDependencies": {
"tap": "14.11.0"
"tap": "15.0.1"
},

@@ -30,3 +30,3 @@ "engines": {

},
"version": "0.1.3"
"version": "0.1.4"
}

@@ -24,3 +24,3 @@ const {test} = require('tap');

tests.forEach(({args, description, error, expected}) => {
return test(description, ({deepIs, end, throws}) => {
return test(description, ({end, strictSame, throws}) => {
if (!!error) {

@@ -31,3 +31,3 @@ throws(() => featureFlagsAsWords(args), new Error(error), 'Got error');

deepIs(res.words, expected.words, 'Got expected words encoding');
strictSame(res.words, expected.words, 'Got expected words encoding');
}

@@ -34,0 +34,0 @@

@@ -25,3 +25,3 @@ const {test} = require('tap');

tests.forEach(({args, description, error, expected}) => {
return test(description, ({deepIs, end, throws}) => {
return test(description, ({end, strictSame, throws}) => {
if (!!error) {

@@ -32,3 +32,3 @@ throws(() => featureFlagsFromHex(args), new Error(error), 'Got error');

deepIs(res.features, expected.features, 'Got expected feature flags');
strictSame(res.features, expected.features, 'Got expected feature flags');
}

@@ -35,0 +35,0 @@

@@ -19,3 +19,3 @@ const {test} = require('tap');

tests.forEach(({args, description, error, expected}) => {
return test(description, ({deepIs, end, throws}) => {
return test(description, ({end, strictSame, throws}) => {
if (!!error) {

@@ -26,3 +26,3 @@ throws(() => featureFlagsFromWords(args), new Error(error), 'Got error');

deepIs(res.features, expected.features, 'Got expected feature bits');
strictSame(res.features, expected.features, 'Got expected feature bits');
}

@@ -29,0 +29,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc