diff --git a/build.sbt b/build.sbt index be8d232..d7258eb 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ enablePlugins(ScalaNativePlugin) name := "poncho" organization := "fiatjaf" scalaVersion := "3.1.3" -version := "0.2.2" +version := "0.2.3" libraryDependencies ++= Seq( "org.scodec" %%% "scodec-bits" % "1.1.32", "org.scodec" %%% "scodec-core" % "2.2.0", @@ -12,7 +12,6 @@ libraryDependencies ++= Seq( "com.fiatjaf" %%% "scoin" % "0.3.0", "com.fiatjaf" %%% "nlog" % "0.1.0", "com.fiatjaf" %%% "sn-unixsocket" % "0.1.0", - "com.fiatjaf" %%% "sn-chacha20poly1305" % "0.2.1", "com.github.lolgab" %%% "native-loop-core" % "0.2.1", "com.softwaremill.quicklens" %%% "quicklens" % "1.8.8", diff --git a/src/main/scala/CLN.scala b/src/main/scala/CLN.scala index 241e651..9b24800 100644 --- a/src/main/scala/CLN.scala +++ b/src/main/scala/CLN.scala @@ -240,7 +240,6 @@ class CLN(master: ChannelMaster) extends NodeInterface { val peerFound = List(chandata("source").str, chandata("destination").str) .map(ByteVector.fromValidHex(_)) - .tap(ids => System.err.println(ids)) .find(_ != master.node.publicKey.value) peerFound match {