We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20aea62 commit 8d3bfafCopy full SHA for 8d3bfaf
cmd/soroban-cli/src/commands/ledger/entry/fetch/account.rs
@@ -17,10 +17,6 @@ pub struct Cmd {
17
#[command(flatten)]
18
pub args: Args,
19
20
- /// Hide the account ledger entry from the output
21
- #[arg(long)]
22
- pub hide_account: bool,
23
-
24
/// If identity is a seed phrase use this hd path, default is 0
25
#[arg(long)]
26
pub hd_path: Option<usize>,
@@ -50,9 +46,6 @@ impl Cmd {
50
46
}
51
47
52
48
fn insert_account_keys(&self, ledger_keys: &mut Vec<LedgerKey>) -> Result<(), Error> {
53
- if self.hide_account {
54
- return Ok(());
55
- }
56
49
let acc = self.muxed_account(&self.account)?;
57
let key = LedgerKey::Account(LedgerKeyAccount {
58
account_id: acc.account_id(),
0 commit comments