Really skip private rpc port reachable checks (#12239)

This commit is contained in:
Ryo Onodera 2020-09-16 01:36:15 +09:00 committed by GitHub
parent ee3f65d8ef
commit b85e8497b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1312,7 +1312,7 @@ pub fn main() {
("RPC pubsub", rpc_pubsub_addr),
("RPC banks", rpc_banks_addr),
] {
if ContactInfo::is_valid_address(&addr) {
if !private_rpc && ContactInfo::is_valid_address(&addr) {
tcp_listeners.push((
addr.port(),
TcpListener::bind(addr).unwrap_or_else(|err| {