CW-481 Fix empty Address (#1072)

This commit is contained in:
Konstantin Ullrich 2023-09-01 13:04:35 +02:00 committed by GitHub
parent d51b9bd684
commit 8757390c8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,6 +41,7 @@ abstract class MoneroWalletAddressesBase extends WalletAddresses with Store {
Future<void> init() async {
accountList.update();
account = accountList.accounts.first;
updateSubaddressList(accountIndex: account?.id ?? 0);
await updateAddressesInBox();
}