Skip to content

Commit

Permalink
tag v0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Aug 15, 2022
1 parent aa8d4da commit 862c170
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ enablePlugins(NativeImagePlugin)
name := "cliche"
organization := "fiatjaf"
scalaVersion := "2.13.8"
version := "0.4.6-SNAPSHOT"
version := "0.4.6"
libraryDependencies ++= Seq(
"com.fiatjaf" % "immortan_2.13" % "0.7.4-SNAPSHOT",
"com.fiatjaf" % "immortan_2.13" % "0.7.5",
"com.github.alexarchambault" % "case-app_2.13" % "2.1.0-M13",
"com.lihaoyi" % "requests_2.13" % "0.7.0",
"com.iheart" % "ficus_2.13" % "1.5.0",
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import immortan.utils.{
WalletEventsCatcher,
WalletEventsListener
}
import immortan.crypto.Tools.{~, none, Any2Some}
import immortan.crypto.Tools.{~, none}

import utils.RequestsConnectionProvider
import scala.concurrent.duration.FiniteDuration
Expand Down Expand Up @@ -226,7 +226,7 @@ object Main extends IOApp.Simple {
}

override def onChainMasterSelected(addr: InetSocketAddress): Unit =
currentChainNode = addr.asSome
currentChainNode = Some(addr)

override def onChainDisconnected(): Unit = currentChainNode = None

Expand Down

0 comments on commit 862c170

Please sign in to comment.