mirror of
https://github.com/tornadocash/fixed-merkle-tree.git
synced 2024-11-22 01:37:09 +01:00
fix: bulk insert empty elements
This commit is contained in:
parent
d5816e7cf4
commit
e3c54ea818
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "fixed-merkle-tree",
|
"name": "fixed-merkle-tree",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"description": "Fixed depth merkle tree implementation with sequential inserts",
|
"description": "Fixed depth merkle tree implementation with sequential inserts",
|
||||||
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
|
"repository": "https://github.com/tornadocash/fixed-merkle-tree.git",
|
||||||
"main": "src/merkleTree.js",
|
"main": "src/merkleTree.js",
|
||||||
|
@ -78,6 +78,10 @@ class MerkleTree {
|
|||||||
* @param {Array} elements Elements to insert
|
* @param {Array} elements Elements to insert
|
||||||
*/
|
*/
|
||||||
bulkInsert(elements) {
|
bulkInsert(elements) {
|
||||||
|
if (!elements.length) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (this._layers[0].length + elements.length > this.capacity) {
|
if (this._layers[0].length + elements.length > this.capacity) {
|
||||||
throw new Error('Tree is full')
|
throw new Error('Tree is full')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user