We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To reproduce
safe files download <address>
Tries to connect (takes about 10s, quite a long time)
Shows error unrelated to network connection:
Error: 0: Both the name and address must be supplied if either are used
This error could be shown before connecting to the network.
It's a better ux to fail fast. It's less network load to avoid connection if it won't be used.
Main place to look at is sn_cli/src/main.rs L85-108
There's a similar ux concern with wallet commands, eg address and receive, which don't need a connection but will establish one anyway.
address
receive
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce
safe files download <address>
Tries to connect (takes about 10s, quite a long time)
Shows error unrelated to network connection:
This error could be shown before connecting to the network.
It's a better ux to fail fast. It's less network load to avoid connection if it won't be used.
Main place to look at is sn_cli/src/main.rs L85-108
There's a similar ux concern with wallet commands, eg
address
andreceive
, which don't need a connection but will establish one anyway.The text was updated successfully, but these errors were encountered: