Skip to content

Commit 0a7e2c0

Browse files
committed
release notes, comments, unused imports
1 parent e390a3c commit 0a7e2c0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

release-notes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
**2.1.0**
2+
---------
3+
4+
* AVL+ tree serialization, see *BatchAVLProverSerializer* class
5+
* Possibility to get list of removed nodes, see *removedNodes()* in *BatchAVLProver*
6+
* Better Base58 performance
7+
* Initial implementation of sparse Merkle trees
8+
9+
110
**2.0.5**
211
---------
312
* *randomWalk()* in *BatchAVLProver* can accept external randomness via an optional parameter

src/main/scala/scorex/crypto/authds/avltree/batch/serialization/BatchAVLProverManifest.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ package scorex.crypto.authds.avltree.batch.serialization
33
import scorex.crypto.authds.avltree.batch.ProverNodes
44
import scorex.crypto.hash.{CryptographicHash, Digest}
55

6-
import scala.util.Try
76

87
/**
9-
* Top subtree of AVL tree, starting from root node and ending with FinalInternalNode
8+
* Top subtree of AVL tree, starting from root node and ending with ProxyInternalNode
109
*/
1110
case class BatchAVLProverManifest[D <: Digest, HF <: CryptographicHash[D]](keyLength: Int,
1211
valueLengthOpt: Option[Int],

0 commit comments

Comments
 (0)