File tree 4 files changed +13
-3
lines changed
src/test/scala/scorex/crypto/authds/avltree/batch
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ resolvers += "Sonatype Releases" at "https://oss.sonatype.org/content/repositori
18
18
19
19
You can use Scrypto in your sbt project by simply adding the following dependency to your build file:
20
20
``` scala
21
- libraryDependencies += " org.scorexfoundation" %% " scrypto" % " 2.1.1 "
21
+ libraryDependencies += " org.scorexfoundation" %% " scrypto" % " 2.1.2 "
22
22
```
23
23
24
24
### Hash functions
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name := "scrypto"
4
4
5
5
lazy val commonSettings = Seq (
6
6
organization := " org.scorexfoundation" ,
7
- version := " 2.1.1 " ,
7
+ version := " 2.1.2 " ,
8
8
scalaVersion := " 2.12.5" ,
9
9
licenses := Seq (" CC0" -> url(" https://creativecommons.org/publicdomain/zero/1.0/legalcode" )),
10
10
homepage := Some (url(" https://github.com/input-output-hk/scrypto" )),
Original file line number Diff line number Diff line change
1
+ ** 2.1.2**
2
+ ---------
3
+
4
+ * Base58: empty string allowed as parameter
5
+ * Reworked Base16 implementation has much better performance
6
+ * Minor changes in MerkleTree implementation
7
+
8
+
1
9
** 2.1.1**
2
10
---------
3
11
Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ object BatchingPlayground extends App with BatchTestingHelpers with Matchers {
36
36
// lookupBenchmark()
37
37
// testReadme
38
38
// removedNodesBenchmark
39
- removedNodesBenchmark()
39
+ // removedNodesBenchmark()
40
+
41
+ testReadme
40
42
41
43
def removedNodesBenchmark (startTreeSize : Int = 10000 ,
42
44
toRemoveSize : Int = 2000 ,
You can’t perform that action at this time.
0 commit comments