solution: release v0.9.0
This commit is contained in:
@@ -35,7 +35,7 @@ group = 'io.emeraldpay.dshackle'
|
|||||||
// Version schema:
|
// Version schema:
|
||||||
// x.x.x for production, following SemVer model
|
// x.x.x for production, following SemVer model
|
||||||
// x.x-SNAPSHOT for development
|
// x.x-SNAPSHOT for development
|
||||||
version = '0.9.0-SNAPSHOT'
|
version = '0.9.0'
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_11
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ class DefaultBitcoinMethods() : CallMethods {
|
|||||||
override fun executeHardcoded(method: String): ByteArray {
|
override fun executeHardcoded(method: String): ByteArray {
|
||||||
return when (method) {
|
return when (method) {
|
||||||
"getconnectioncount" -> "42".toByteArray()
|
"getconnectioncount" -> "42".toByteArray()
|
||||||
"getnetworkinfo" -> "{\"version\": 700000, \"subversion\": \"/EmeraldDshackle:v0.7/\"}".toByteArray()
|
"getnetworkinfo" -> "{\"version\": 700000, \"subversion\": \"/EmeraldDshackle:v0.9/\"}".toByteArray()
|
||||||
else -> throw RpcException(-32601, "Method not found")
|
else -> throw RpcException(-32601, "Method not found")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ class DefaultEthereumMethods(
|
|||||||
"true"
|
"true"
|
||||||
}
|
}
|
||||||
"web3_clientVersion" -> {
|
"web3_clientVersion" -> {
|
||||||
"\"EmeraldDshackle/v0.2\""
|
"\"EmeraldDshackle/v0.9\""
|
||||||
}
|
}
|
||||||
"eth_protocolVersion" -> {
|
"eth_protocolVersion" -> {
|
||||||
"\"0x3f\""
|
"\"0x3f\""
|
||||||
|
|||||||
Reference in New Issue
Block a user