From ecca3c59c75a9ad2d463da8c266f38b4813c3a0a Mon Sep 17 00:00:00 2001 From: Vritra4 Date: Mon, 15 Jul 2024 11:27:50 +0900 Subject: [PATCH] make json-rpc public by default --- jsonrpc/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonrpc/config/config.go b/jsonrpc/config/config.go index b1620b2..8243097 100644 --- a/jsonrpc/config/config.go +++ b/jsonrpc/config/config.go @@ -26,7 +26,7 @@ const ( // DefaultBlockRangeCap is the default max block range allowed for `eth_getLogs` query. DefaultBlockRangeCap = 100 // DefaultAddress defines the default HTTP server to listen on. - DefaultAddress = "127.0.0.1:8545" + DefaultAddress = "0.0.0.0:8545" // DefaultFilterCap DefaultFilterCap int32 = 200 )