From 7eccb15107084f4adcca64b5e2dec04517edb967 Mon Sep 17 00:00:00 2001 From: Dmitry Shmatko Date: Fri, 12 Oct 2018 18:35:56 +0300 Subject: [PATCH 1/2] Fixed modules configuration url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06f757c..e51a34b 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ https://www.youtube.com/watch?v=leaAMTgjvxg Navigate to web view `http://localhost:8080` JSON-RPC is available at either `http://localhost:8545/rpc` or `http://localhost:8545` -In order to provide ability to disable unneeded features, any of app modules could be disabled: web, contracts, rpc. Check [configuration](https://github.com/ether-camp/ethereum-harmony/blob/develop/src/main/resources/user.conf) for more info. +In order to provide ability to disable unneeded features, any of app modules could be disabled: web, contracts, rpc. Check [configuration](https://github.com/ether-camp/ethereum-harmony/blob/develop/src/main/resources/harmony.conf#L7-L32) for more info. Run RPC only: `gradlew runMain -PrpcOnly` From 2fbd9d729687a735ba101abf083331b1566653f4 Mon Sep 17 00:00:00 2001 From: Dmitry Shmatko Date: Fri, 12 Oct 2018 18:44:40 +0300 Subject: [PATCH 2/2] Switched to recent, 1.10.0 EthereumJ snapshot --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index cef4523..3db9667 100644 --- a/build.gradle +++ b/build.gradle @@ -99,7 +99,7 @@ dependencies { compile "org.ethereum:solcJ-all:0.4.19" // Solidity Compiler win/mac/linux binaries // don't forget to adjust {ethereumJ.version} in application.properties - compile ("org.ethereum:ethereumj-core:1.9.0-SNAPSHOT") { + compile ("org.ethereum:ethereumj-core:1.10.0-SNAPSHOT") { changing = true exclude group: "log4j"