-
Notifications
You must be signed in to change notification settings - Fork 0
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
My/worker return values #59
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
cli/src/trusted_base_cli/mod.rs
Outdated
@@ -104,7 +104,6 @@ fn new_account(trusted_args: &TrustedCli) -> CliResult { | |||
drop(store); | |||
info!("new account {}", key.to_ss58check()); | |||
let key_str = key.to_ss58check(); | |||
println!("{}", key_str); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that this leads to the CI error. Has this been changed for a reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we now give return values now, we did not need it, but we can reinsert it. I will do so an push it
This will enable the extraction of responses from CLI commands, subsequently storing these responses in a Python dictionary.