We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e52f4 commit d55f91fCopy full SHA for d55f91f
build.sbt
@@ -10,7 +10,7 @@ lazy val scala211 = "2.11.12"
10
lazy val scala213 = "2.13.1"
11
12
crossScalaVersions := Seq(scala212, scala211, scala213)
13
-scalaVersion := scala212
+scalaVersion := scala213
14
15
javacOptions ++=
16
"-source" :: "1.8" ::
src/test/scala/scorex/crypto/authds/avltree/batch/BatchTesting.scala
@@ -32,7 +32,7 @@ class LegacyProver(tree: AVLTree[_]) {
32
case Failure(e) => throw BatchFailure(e, m)
33
}
34
35
- BatchSuccessSimple(aggregatedProofs)
+ BatchSuccessSimple(aggregatedProofs.toSeq)
36
} match {
37
case Success(p) => p
38
case Failure(e: BatchFailure) => e
0 commit comments