Bump patch version

This commit is contained in:
Miguel Mota 2022-11-14 09:06:35 -08:00
parent 5c169b13d4
commit c53c4327a8
No known key found for this signature in database
GPG Key ID: 67EC1161588A00F9
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "merkletreejs",
"version": "0.3.1",
"version": "0.3.2",
"description": "Construct Merkle Trees and verify proofs",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -112,7 +112,7 @@ export class MerkleTree extends Base {
this.processLeaves(leaves)
}
public getOptions() {
public getOptions () {
return {
complete: this.complete,
isBitcoinTree: this.isBitcoinTree,
@ -763,7 +763,7 @@ export class MerkleTree extends Base {
options,
root,
layers,
leaves,
leaves
}, null, 2)
}