We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93db759 commit 2864d03Copy full SHA for 2864d03
crates/wallets/src/multi_wallet.rs
@@ -528,6 +528,7 @@ mod tests {
528
("ledger", "--mnemonic-indexes", 1),
529
("trezor", "--mnemonic-indexes", 2),
530
("aws", "--mnemonic-indexes", 10),
531
+ ("turnkey", "--mnemonic-indexes", 11),
532
];
533
534
for test_case in wallet_options {
@@ -542,6 +543,7 @@ mod tests {
542
543
"ledger" => assert!(args.ledger),
544
"trezor" => assert!(args.trezor),
545
"aws" => assert!(args.aws),
546
+ "turnkey" => assert!(args.turnkey),
547
_ => panic!("Should have matched one of the previous wallet options"),
548
}
549
0 commit comments