fix: change rpc host to localhost (#16003)

This commit is contained in:
Igor Sirotin 2024-08-06 21:04:51 +01:00 committed by GitHub
parent 39d533acd4
commit 767215e6e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,12 +22,12 @@ proc defaultAPIConfig*(): APIConfig =
result.httpEnabled = true
checkAndSetPort(Port(8545), result.httpEnabled)
result.httpHost = "0.0.0.0"
result.httpHost = "127.0.0.1"
result.httpPort = 8545
result.wsEnabled = true
checkAndSetPort(Port(8586), result.wsEnabled)
result.wsHost = "0.0.0.0"
result.wsHost = "127.0.0.1"
result.wsPort = 8586
proc toJson*(self: APIConfig): JsonNode =