Socket
Socket
Sign inDemoInstall

tendermint

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tendermint - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

3

lib/client.js

@@ -72,2 +72,5 @@ 'use strict';

});
this.ws.on('close', function () {
return _this2.emit('error', Error('websocket disconnected'));
});
this.ws.on('data', function (data) {

@@ -74,0 +77,0 @@ data = JSON.parse(data);

2

package.json
{
"name": "tendermint",
"version": "2.0.1",
"version": "2.0.2",
"description": "A light client which talks to your Tendermint node over RPC",

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

@@ -50,2 +50,3 @@ 'use strict'

this.ws.on('error', (err) => this.emit('error', err))
this.ws.on('close', () => this.emit('error', Error('websocket disconnected')))
this.ws.on('data', (data) => {

@@ -52,0 +53,0 @@ data = JSON.parse(data)

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