diff --git a/clap-utils/src/keypair.rs b/clap-utils/src/keypair.rs index 29386c7d1b..394b50dc38 100644 --- a/clap-utils/src/keypair.rs +++ b/clap-utils/src/keypair.rs @@ -133,7 +133,7 @@ impl DefaultSigner { } } -pub enum SignerSource { +pub(crate) enum SignerSource { Ask, Filepath(String), Usb(String), @@ -141,7 +141,7 @@ pub enum SignerSource { Pubkey(Pubkey), } -pub fn parse_signer_source>(source: S) -> SignerSource { +pub(crate) fn parse_signer_source>(source: S) -> SignerSource { if path == "-" { SignerSource::Stdin } else if path == ASK_KEYWORD {