Merge pull request #677 from majestrate/disable-rpc

disable rpc by default
This commit is contained in:
Jeff 2019-07-02 09:23:15 -04:00 committed by GitHub
commit 766ece8355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ namespace llarp
ShouldCreateDefaultHiddenService();
const std::string DefaultRPCBindAddr = "127.0.0.1:1190";
bool enableRPCServer = true;
bool enableRPCServer = false;
std::unique_ptr< rpc::Server > rpcServer;
std::string rpcBindAddr = DefaultRPCBindAddr;