#![cfg(all(feature = "std", feature = "random"))]
use crate::Error;
use coins_bip39::{
English,
Mnemonic,
};
use rand::Rng;
pub fn generate_mnemonic_phrase<R: Rng>(
rng: &mut R,
count: usize,
) -> Result<String, Error> {
Ok(Mnemonic::<English>::new_with_count(rng, count)?.to_phrase())
}