allows private addresses by default in test-validator (#18976)

This commit is contained in:
behzad nouri 2021-07-29 19:00:23 +00:00 committed by GitHub
parent dfbb0c559b
commit 1cef6fd4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 8 deletions

View File

@ -279,13 +279,6 @@ fn main() {
If the ledger already exists then this parameter is silently ignored", If the ledger already exists then this parameter is silently ignored",
), ),
) )
.arg(
Arg::with_name("allow_private_addr")
.long("allow-private-addr")
.takes_value(false)
.help("Allow contacting private ip addresses")
.hidden(true),
)
.get_matches(); .get_matches();
let output = if matches.is_present("quiet") { let output = if matches.is_present("quiet") {
@ -355,7 +348,8 @@ fn main() {
solana_core::validator::report_target_features(); solana_core::validator::report_target_features();
let socket_addr_space = SocketAddrSpace::new(matches.is_present("allow_private_addr")); // TODO: Ideally test-validator should *only* allow private addresses.
let socket_addr_space = SocketAddrSpace::new(/*allow_private_addr=*/ true);
let cli_config = if let Some(config_file) = matches.value_of("config_file") { let cli_config = if let Some(config_file) = matches.value_of("config_file") {
solana_cli_config::Config::load(config_file).unwrap_or_default() solana_cli_config::Config::load(config_file).unwrap_or_default()
} else { } else {