merkle-patricia-tree
Advanced tools
Comparing version 0.1.19 to 0.1.20
{ | ||
"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 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
1
80899
+ Addedrlp@0.0.11(transitive)
- Removedrlp@3.0.0(transitive)
Updatedrlp@0.0.11