diff --git a/eth/main.cpp b/eth/main.cpp index 24520d8c4..bd8fbc743 100644 --- a/eth/main.cpp +++ b/eth/main.cpp @@ -1085,7 +1085,6 @@ int main(int argc, char** argv) string jsonAdmin; bool upnp = true; WithExisting withExisting = WithExisting::Trust; - bool jit = false; string sentinel; /// Networking params. @@ -1525,7 +1524,6 @@ int main(int argc, char** argv) }; StructuredLogger::get().initialize(structuredLogging, structuredLoggingFormat, structuredLoggingURL); - VMFactory::setKind(jit ? VMKind::JIT : VMKind::Interpreter); auto netPrefs = publicIP.empty() ? NetworkPreferences(listenIP ,listenPort, upnp) : NetworkPreferences(publicIP, listenIP ,listenPort, upnp); netPrefs.discovery = !disableDiscovery; netPrefs.pin = pinning; diff --git a/neth/main.cpp b/neth/main.cpp index 5ec253440..c3dc65715 100644 --- a/neth/main.cpp +++ b/neth/main.cpp @@ -339,7 +339,6 @@ int main(int argc, char** argv) bool upnp = true; bool forceMining = false; bool killChain = false; - bool jit = false; bool structuredLogging = false; string structuredLoggingFormat = "%Y-%m-%dT%H:%M:%S"; string clientName; @@ -544,10 +543,9 @@ int main(int argc, char** argv) cout << credits(); StructuredLogger::get().initialize(structuredLogging, structuredLoggingFormat); - VMFactory::setKind(jit ? VMKind::JIT : VMKind::Interpreter); auto netPrefs = publicIP.empty() ? NetworkPreferences(listenIP ,listenPort, upnp) : NetworkPreferences(publicIP, listenIP ,listenPort, upnp); auto nodesState = contents((dbPath.size() ? dbPath : getDataDir()) + "/network.rlp"); - std::string clientImplString = "N++eth/" + clientName + "v" + dev::Version + "/" DEV_QUOTED(ETH_BUILD_TYPE) "/" DEV_QUOTED(ETH_BUILD_PLATFORM) + (jit ? "/JIT" : ""); + std::string clientImplString = "N++eth/" + clientName + "v" + dev::Version + "/" DEV_QUOTED(ETH_BUILD_TYPE) "/" DEV_QUOTED(ETH_BUILD_PLATFORM)); dev::WebThreeDirect web3( clientImplString, dbPath,