Skip to content

Commit

Permalink
Merge pull request #515 from ScorexFoundation/fix-scorex-util
Browse files Browse the repository at this point in the history
update scorex-util 0.1.3 -> 0.1.4 (fixed getShort)
  • Loading branch information
catena2w authored Jun 4, 2019
2 parents d62d0ba + 349fabe commit 76fc50d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ git.gitUncommittedChanges in ThisBuild := true

val bouncycastleBcprov = "org.bouncycastle" % "bcprov-jdk15on" % "1.60"
val scrypto = "org.scorexfoundation" %% "scrypto" % "2.1.6"
val scorexUtil = "org.scorexfoundation" %% "scorex-util" % "0.1.3"
val scorexUtil = "org.scorexfoundation" %% "scorex-util" % "0.1.4"
val macroCompat = "org.typelevel" %% "macro-compat" % "1.1.1"
val paradise = "org.scalamacros" %% "paradise" % "2.1.0" cross CrossVersion.full

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ class ConcreteCollectionSerializerSpecification extends TableSerializationSpecif
property("ConcreteCollection: deserialize collection of a crazy size") {
val bytes = Array[Byte](OpCodes.ConcreteCollectionCode) ++
SigmaSerializer.startWriter().putUInt(Int.MaxValue).toBytes
an[AssertionError] should be thrownBy ValueSerializer.deserialize(bytes)
an[IllegalArgumentException] should be thrownBy ValueSerializer.deserialize(bytes)
}
}

0 comments on commit 76fc50d

Please sign in to comment.