Skip to content

Commit

Permalink
[ETCM-1096] Fix scalastyle issue with line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
strauss-m committed Sep 14, 2021
1 parent d2f4441 commit 51eeb16
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,9 @@ object SignedTransaction {
case None => rawSignature
case _ =>
throw new IllegalStateException(
s"Unexpected pointSign. ChainId: ${chainIdOpt.getOrElse("None")}, raw.signature.v: ${rawSignature.v}, authorized values are ${ECDSASignature.allowedPointSigns
.mkString(", ")}"
s"Unexpected pointSign. ChainId: ${chainIdOpt.getOrElse("None")}, "
+ s"raw.signature.v: ${rawSignature.v}, "
+ s"authorized values are ${ECDSASignature.allowedPointSigns.mkString(", ")}"
)
}

Expand Down

0 comments on commit 51eeb16

Please sign in to comment.