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

ln-service

Package Overview
Dependencies
Maintainers
1
Versions
517
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ln-service - npm Package Compare versions

Comparing version 56.3.0 to 56.3.1

2

CHANGELOG.md
# Versions
## 56.3.0
## 56.3.1

@@ -5,0 +5,0 @@ - `subscribeToPastPayment`, `subscribeToPayViaDetails`,

@@ -14,3 +14,3 @@ {

"invoices": "2.2.3",
"lightning": "9.3.0",
"lightning": "9.3.1",
"macaroon": "3.0.4",

@@ -32,3 +32,3 @@ "morgan": "1.10.0",

"ecpair": "2.1.0",
"ln-docker-daemons": "5.0.2",
"ln-docker-daemons": "5.0.3",
"p2tr": "1.3.3",

@@ -72,3 +72,3 @@ "portfinder": "1.0.32",

},
"version": "56.3.0"
"version": "56.3.1"
}

@@ -15,3 +15,3 @@ const {spawnLightningCluster} = require('ln-docker-daemons');

// Test requesting a chain fee increase
test(`Request chain fee increase`, async ({end, equal}) => {
test(`Request chain fee increase`, async ({end, equal, fail, strictSame}) => {
const [{generate, kill, lnd}] = (await spawnLightningCluster({})).nodes;

@@ -24,3 +24,6 @@

const {psbt} = await fundPsbt({lnd, outputs: [{address, tokens}]});
const {psbt} = await fundPsbt({lnd, outputs: [
{address, tokens},
{tokens, address: '2N8hwP1WmJrFF5QWABn38y63uYLhnJYJYTF'},
]});

@@ -33,2 +36,13 @@ const {transaction} = await signPsbt({lnd, psbt});

try {
await requestChainFeeIncrease({
lnd,
transaction_id: bump.transaction_id,
transaction_vout: bump.transaction_vout + 1,
});
fail('Expected chain fee increase rejected');
} catch (err) {
strictSame(err, [404, 'SpecifiedOutpointNotFoundInWalletUtxos'], '404');
}
await requestChainFeeIncrease({

@@ -35,0 +49,0 @@ lnd,

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