Skip to content

Commit f669bf8

Browse files
committed
Drop ledger co-signer guard; tracked separately.
1 parent a8c6edc commit f669bf8

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

cmd/soroban-cli/src/commands/contract/arg_parsing.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -466,11 +466,6 @@ fn resolve_address(addr_or_alias: &str, config: &config::Args) -> Result<String,
466466

467467
async fn resolve_signer(addr_or_alias: &str, config: &config::Args) -> Option<Signer> {
468468
let secret = config.locator.get_secret_key(addr_or_alias).ok()?;
469-
// Ledger co-signing must go through `--source`; opening the HID transport
470-
// here conflicts with the source-account signer (hidapi is per-process).
471-
if matches!(secret, crate::config::secret::Secret::Ledger { .. }) {
472-
return None;
473-
}
474469
let print = Print::new(false);
475470
let signer = secret.signer(config.hd_path(), print).await.ok()?;
476471
Some(signer)

0 commit comments

Comments
 (0)