pub trait CreateWallet {
    // Required method
    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§

source

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

| Create new wallet. |

Implementors§