diff --git a/sdk/src/client/secret/mod.rs b/sdk/src/client/secret/mod.rs index 7ee356aec6..06cd1be0df 100644 --- a/sdk/src/client/secret/mod.rs +++ b/sdk/src/client/secret/mod.rs @@ -201,7 +201,13 @@ impl fmt::Display for SecretManager { #[cfg(feature = "stronghold")] Self::Stronghold(_) => write!(f, "Stronghold"), #[cfg(feature = "ledger_nano")] - Self::LedgerNano(_) => write!(f, "LedgerNano"), + Self::LedgerNano(l) => { + if l.is_simulator { + write!(f, "LedgerNano Simulator") + } else { + write!(f, "LedgerNano") + } + } Self::Mnemonic(_) => write!(f, "Mnemonic"), #[cfg(feature = "private_key_secret_manager")] Self::PrivateKey(_) => write!(f, "PrivateKey"),