We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7739aee commit 3f71a05Copy full SHA for 3f71a05
src/ports/tunnel.rs
@@ -158,11 +158,12 @@ pub async fn run(args: Args, cli: &crate::Cli) -> miette::Result<()> {
158
.as_ref()
159
.ok_or(miette::miette!("missing context"))?;
160
161
- let tunnel_options = vec!["node"];
+ // we skip asking for tunnel type since the only one available at the moment is the Cardano node.
162
163
- let _tunnel = inquire::Select::new("Choose the port to tunnel", tunnel_options)
164
- .prompt()
165
- .into_diagnostic()?;
+ // let tunnel_options = vec!["node"];
+ // let _tunnel = inquire::Select::new("Choose the port to tunnel", tunnel_options)
+ // .prompt()
166
+ // .into_diagnostic()?;
167
168
let options: PortOptions = api::get_public(&format!("metadata/ports/{}", CARDANO_NODE_KIND))
169
.await
0 commit comments