mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-23 03:05:11 +00:00
Fixed mnemonic generation call for litecoin service.
This commit is contained in:
parent
2b4248e30b
commit
b096123ea1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class LitecoinWalletService extends WalletService<
|
|||
@override
|
||||
Future<LitecoinWallet> create(BitcoinNewWalletCredentials credentials) async {
|
||||
final wallet = LitecoinWallet(
|
||||
mnemonic: generateMnemonic(),
|
||||
mnemonic: await generateMnemonic(),
|
||||
password: credentials.password,
|
||||
walletInfo: credentials.walletInfo);
|
||||
await wallet.save();
|
||||
|
|
Loading…
Reference in a new issue