Skip to content

Commit 8d3bfaf

Browse files
Address PR feedback
1 parent 20aea62 commit 8d3bfaf

File tree

1 file changed

+0
-7
lines changed
  • cmd/soroban-cli/src/commands/ledger/entry/fetch

1 file changed

+0
-7
lines changed

cmd/soroban-cli/src/commands/ledger/entry/fetch/account.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ pub struct Cmd {
1717
#[command(flatten)]
1818
pub args: Args,
1919

20-
/// Hide the account ledger entry from the output
21-
#[arg(long)]
22-
pub hide_account: bool,
23-
2420
/// If identity is a seed phrase use this hd path, default is 0
2521
#[arg(long)]
2622
pub hd_path: Option<usize>,
@@ -50,9 +46,6 @@ impl Cmd {
5046
}
5147

5248
fn insert_account_keys(&self, ledger_keys: &mut Vec<LedgerKey>) -> Result<(), Error> {
53-
if self.hide_account {
54-
return Ok(());
55-
}
5649
let acc = self.muxed_account(&self.account)?;
5750
let key = LedgerKey::Account(LedgerKeyAccount {
5851
account_id: acc.account_id(),

0 commit comments

Comments
 (0)