Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cli] Switch to testnet as a default network environment #17267

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/sui/src/sui_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,12 +587,12 @@ async fn prompt_if_no_config(
String::new()
} else {
print!(
"Sui Full node server URL (Defaults to Sui Devnet if not specified) : "
"Sui Full node server URL (Defaults to Sui Tevnet if not specified) : "
);
read_line()?
};
Some(if url.trim().is_empty() {
SuiEnv::devnet()
SuiEnv::testnet()
} else {
print!("Environment alias for [{url}] : ");
let alias = read_line()?;
Expand Down
Loading