[clap-v3-utils] Fix output type of `ae_key_from_seed_phrase` (#31666)

fix output type of `ae_key_from_seed_phrase`
This commit is contained in:
samkim-crypto 2023-05-17 09:03:29 +09:00 committed by GitHub
parent d40212ca74
commit 39705afc38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1198,7 +1198,7 @@ pub fn ae_key_from_seed_phrase(
skip_validation: bool,
derivation_path: Option<DerivationPath>,
legacy: bool,
) -> Result<ElGamalKeypair, Box<dyn error::Error>> {
) -> Result<AeKey, Box<dyn error::Error>> {
encodable_key_from_seed_phrase(keypair_name, skip_validation, derivation_path, legacy)
}