-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: STUD-397: newm-chain failed after plomin hardfork
- Loading branch information
1 parent
35905d1
commit 114bfa1
Showing
11 changed files
with
91 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
object Versions { | ||
const val COMMONS_LOGGING = "1.3.4" | ||
const val COMMONS_NUMBERS = "1.2" | ||
const val COROUTINES = "1.8.1" | ||
const val COROUTINES = "1.10.1" | ||
const val GOOGLE_TRUTH = "1.4.4" | ||
const val JUNIT = "5.11.0" | ||
const val KOTLIN = "2.0.20" | ||
const val JUNIT = "5.11.4" | ||
const val KOTLIN = "2.1.10" | ||
const val KOTLINX_DATETIME = "0.6.1" | ||
const val KOTLINX_SERIALIZATION = "1.7.2" | ||
const val KTLINT = "1.3.1" | ||
const val KTLINT_PLUGIN = "12.1.1" | ||
const val KOTLINX_SERIALIZATION = "1.8.0" | ||
const val KTLINT = "1.5.0" | ||
const val KTLINT_PLUGIN = "12.1.2" | ||
const val KTOR = "2.3.12" | ||
const val LOGBACK = "1.5.7" | ||
const val LOGBACK = "1.5.16" | ||
const val MAVEN_REPO_AUTH_PLUGIN = "3.0.4" | ||
const val MOCKK = "1.13.12" | ||
const val VERSIONS_PLUGIN = "0.51.0" | ||
const val MOCKK = "1.13.16" | ||
const val VERSIONS_PLUGIN = "0.52.0" | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/io/newm/kogmios/protocols/model/GuardrailsHash.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.newm.kogmios.protocols.model | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class GuardrailsHash( | ||
@SerialName("hash") | ||
val hash: String, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters