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

merkle-patricia-tree

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

merkle-patricia-tree - npm Package Compare versions

Comparing version 0.1.19 to 0.1.20

4

package.json
{
"name": "merkle-patricia-tree",
"version": "0.1.19",
"version": "0.1.20",
"description": "This is an implementation of the modified merkle patricia tree as speficed in the Ethereum's yellow paper.",

@@ -32,3 +32,3 @@ "main": "index.js",

"memdown": "^1.0.0",
"rlp": "*",
"rlp": "0.0.11",
"semaphore": ">=1.0.1",

@@ -35,0 +35,0 @@ "sha3": "~1.0.0"

@@ -71,3 +71,3 @@ var rlp = require('rlp'),

var val = this.raw[key];
if (val !== null && val !== undefined && !(val.length === 1 && val[0] === 0)) {
if (val !== null && val !== undefined && !(val.length === 0)) {
return val;

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