mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-05 02:19:46 +00:00
Fix Mobx issue (#1922)
Some checks are pending
Cache Dependencies / test (push) Waiting to run
Some checks are pending
Cache Dependencies / test (push) Waiting to run
This commit is contained in:
parent
d33a901f66
commit
f2bdb32463
1 changed files with 4 additions and 2 deletions
|
@ -349,8 +349,10 @@ abstract class ElectrumWalletAddressesBase extends WalletAddresses with Store {
|
|||
type: addressPageType,
|
||||
network: network,
|
||||
);
|
||||
_addresses.add(address);
|
||||
Future.delayed(Duration.zero, () => updateAddressesByMatch());
|
||||
Future.delayed(Duration.zero, () {
|
||||
_addresses.add(address);
|
||||
updateAddressesByMatch();
|
||||
});
|
||||
return address;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue