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

postchain-client

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postchain-client - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

src/gtv/serialization.js~

2

package.json
{
"name": "postchain-client",
"version": "0.7.3",
"version": "0.7.4",
"description": "Client library for accessing a Postchain node through REST.",

@@ -5,0 +5,0 @@ "repository": {

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

setTimeout(
() => resolve(this.waitConfirmation(txRID)),
() => this.waitConfirmation(txRID).then(resolve, reject),
511

@@ -162,3 +162,3 @@ );

else {
resolve(this.waitConfirmation(txRID));
this.waitConfirmation(txRID).then(resolve, reject);
}

@@ -223,3 +223,3 @@ })

console.log(typeof body);
callback(null, response.statusCode, body ? body : null);
callback(null, response.statusCode, body !== null ? body : null);
} catch (e) {

@@ -226,0 +226,0 @@ callback(e);

Sorry, the diff of this file is too big to display

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