New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

crosslightning-intermediary

Package Overview
Dependencies
Maintainers
1
Versions
233
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crosslightning-intermediary - npm Package Compare versions

Comparing version 3.0.8 to 3.0.9

2

dist/swaps/frombtcln_abstract/FromBtcLnAbs.js

@@ -75,3 +75,3 @@ "use strict";

}
if (expiryTime.lt(currentTime)) {
if (expiryTime != null && expiryTime.lt(currentTime)) {
const isCommited = yield this.swapContract.isCommited(swap.data);

@@ -78,0 +78,0 @@ if (isCommited) {

{
"name": "crosslightning-intermediary",
"version": "3.0.8",
"version": "3.0.9",
"description": "Main functionality implementation for intermediary node, easily extensible to any chain",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

@@ -121,3 +121,3 @@ import * as BN from "bn.js";

if(expiryTime.lt(currentTime)) {
if(expiryTime!=null && expiryTime.lt(currentTime)) {
const isCommited = await this.swapContract.isCommited(swap.data);

@@ -124,0 +124,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