From d3f3bd70210e2396c6e1766fc9cfeba8af9b8bcd Mon Sep 17 00:00:00 2001 From: BoThe1K Date: Mon, 14 Aug 2023 17:22:52 +0200 Subject: [PATCH] fix/QB-2050: Switch off jsonrpc by default --- server/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/config.go b/server/config/config.go index 005c97b9..f6b6888a 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -190,7 +190,7 @@ func GetAPINamespaces() []string { // DefaultJSONRPCConfig returns an EVM config with the JSON-RPC API enabled by default func DefaultJSONRPCConfig() *JSONRPCConfig { return &JSONRPCConfig{ - Enable: true, + Enable: false, API: GetDefaultAPINamespaces(), Address: DefaultJSONRPCAddress, WsAddress: DefaultJSONRPCWsAddress,