You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log::step(format!("Wallet signing portal started at http://{}", wallet.server_url))?;
25
+
let url = wallet.server_url.clone();
26
+
log::step(format!("Wallet signing portal started at http://{url}."))?;
26
27
27
28
let spinner = spinner();
29
+
spinner.start(format!("Opening browser to http://{url}"));
30
+
let res = open::that(format!("http://{url}"));
31
+
ifletErr(e) = res {
32
+
spinner.error(format!("Failed to launch browser. Please open link manually. {e}"));
33
+
}
34
+
28
35
spinner.start("Waiting for signature... Press Ctrl+C to terminate early.");
0 commit comments