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.3 to 0.1.4

test/testdb2/000131.log

9

index.js

@@ -687,2 +687,11 @@ var assert = require('assert'),

//creates a new trie with a shared cache
internals.Trie.prototype.copy = function (){
var trie = new internals.Trie({db:this.db});
trie.isCheckpoint = this.isCheckpoint;
trie.isImmutable = this.isImmutable;
trie._cache = this._cache;
return trie;
};
internals.Trie.prototype._getCheckpointTrie = function () {

@@ -689,0 +698,0 @@ if (this.isCheckpoint) {

2

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

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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