Skip to content

Commit

Permalink
[clap-v3-utils] Make SignerSource::parse public (solana-labs#410)
Browse files Browse the repository at this point in the history
make `SignerSource::parse` public
  • Loading branch information
samkim-crypto authored Mar 25, 2024
1 parent c7dba30 commit c867522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clap-v3-utils/src/input_parsers/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl SignerSource {
}
}

pub(crate) fn parse<S: AsRef<str>>(source: S) -> Result<Self, SignerSourceError> {
pub fn parse<S: AsRef<str>>(source: S) -> Result<Self, SignerSourceError> {
let source = source.as_ref();
let source = {
#[cfg(target_family = "windows")]
Expand Down

0 comments on commit c867522

Please sign in to comment.