Skip to content

Commit

Permalink
added new fields; new version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpzk committed Nov 28, 2019
1 parent 1422ac3 commit 5747c1a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
project/target/*
target/**
*.class
*.log
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.4.0

* added Omni field confirmations
* added Omni field invalidreason

# 2.3.0

* removed implicit config
Expand Down
11 changes: 6 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val commonSettings = Seq(
organization := "io.tokenanalyst",
version := "2.3.0",
version := "2.4.0",
scalaVersion := "2.12.10",
description := "bitcoin-rpc")

Expand Down Expand Up @@ -48,7 +48,8 @@ pomExtra :=
</developer>
</developers>

val http4sVersion = "0.20.11"
val http4sVersion = "0.21.0-M5"
val circeVersion = "0.12.0-M4"

lazy val http4s = Seq(
"org.http4s" %% "http4s-dsl" % http4sVersion,
Expand All @@ -58,9 +59,9 @@ lazy val http4s = Seq(

lazy val json = Seq(
"org.http4s" %% "http4s-circe" % http4sVersion,
"io.circe" %% "circe-generic" % "0.11.1",
"io.circe" %% "circe-literal" % "0.11.1",
"io.circe" %% "circe-parser" % "0.11.1"
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-literal" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion
)

lazy val zmq = Seq (
Expand Down
6 changes: 0 additions & 6 deletions project/project/plugins.sbt

This file was deleted.

2 changes: 2 additions & 0 deletions src/main/scala/omni/Protocol.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ object Protocol {
txid: String,
block: Long,
blockhash: String,
confirmations: Int,
positioninblock: Option[Int],
version: Option[Int],
blocktime: Long,
valid: Option[Boolean],
invalidreason: Option[String],
type_int: Option[Int],
`type`: Option[String],
propertyid: Option[Int],
Expand Down

0 comments on commit 5747c1a

Please sign in to comment.