Skip to content

Commit b9c9731

Browse files
authored
fix(cast): add turnkey to list (#12476)
1 parent ebcd59b commit b9c9731

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

crates/cast/src/cmd/wallet/list.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ pub struct ListArgs {
3838
#[arg(long, hide = !cfg!(feature = "gcp-kms"))]
3939
gcp: bool,
4040

41+
/// List accounts from Turnkey.
42+
#[arg(long, hide = !cfg!(feature = "turnkey"))]
43+
turnkey: bool,
44+
4145
/// List all configured accounts.
4246
#[arg(long, group = "hw-wallets")]
4347
all: bool,
@@ -64,6 +68,7 @@ impl ListArgs {
6468
.trezor(self.trezor || self.all)
6569
.aws(self.aws || self.all)
6670
.gcp(self.gcp || (self.all && gcp_env_vars_set()))
71+
.turnkey(self.turnkey || self.all)
6772
.interactives(0)
6873
.build()
6974
.expect("build multi wallet");

0 commit comments

Comments
 (0)