pub trait CreateWallet {
    fn create_wallet(
        &mut self,
        name: &String,
        passphrase: &SecureString,
        wallet_creation_flags: u64,
        error: &mut BilingualStr,
        warnings: &mut Vec<BilingualStr>
    ) -> Box<dyn WalletInterface>; }

Required Methods§

| Create new wallet. |

Implementors§