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

Multisignature #1102

Closed
wants to merge 27 commits into from
1 change: 1 addition & 0 deletions apps/src/bin/namada-client/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ pub async fn main() -> Result<()> {
Sub::QueryProtocolParameters(QueryProtocolParameters(args)) => {
rpc::query_protocol_parameters(ctx, args).await;
}
Sub::SignTx(SignTx(args)) => rpc::sign_tx(ctx, args).await,
}
}
cli::NamadaClient::WithoutContext(cmd, global_args) => match cmd {
Expand Down
Loading