diff --git a/build.gradle b/build.gradle index f3d9a6188..af30de71c 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ group = 'io.emeraldpay.dshackle' // Version schema: // x.x.x for production, following SemVer model // x.x-SNAPSHOT for development -version = '0.9.0-SNAPSHOT' +version = '0.9.0' java { sourceCompatibility = JavaVersion.VERSION_11 diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultBitcoinMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultBitcoinMethods.kt index 6b78d3f33..3f3dd2f9b 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultBitcoinMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultBitcoinMethods.kt @@ -72,7 +72,7 @@ class DefaultBitcoinMethods() : CallMethods { override fun executeHardcoded(method: String): ByteArray { return when (method) { "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") } } diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt index 78ee36a10..ff46e4c27 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt @@ -170,7 +170,7 @@ class DefaultEthereumMethods( "true" } "web3_clientVersion" -> { - "\"EmeraldDshackle/v0.2\"" + "\"EmeraldDshackle/v0.9\"" } "eth_protocolVersion" -> { "\"0x3f\""