mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
possible memory bandaid
This commit is contained in:
parent
af7818eb6a
commit
393418f2e7
1 changed files with 6 additions and 2 deletions
|
@ -115,12 +115,16 @@ class ExchangeDataLoadingService {
|
|||
try {
|
||||
await Future.wait([
|
||||
_loadChangeNowCurrencies(),
|
||||
_loadChangeNowFixedRatePairs(),
|
||||
_loadChangeNowEstimatedRatePairs(),
|
||||
// _loadChangeNowFixedRatePairs(),
|
||||
// _loadChangeNowEstimatedRatePairs(),
|
||||
// loadSimpleswapFixedRateCurrencies(ref),
|
||||
// loadSimpleswapFloatingRateCurrencies(ref),
|
||||
loadMajesticBankCurrencies(),
|
||||
]);
|
||||
|
||||
await _loadChangeNowFixedRatePairs();
|
||||
await _loadChangeNowEstimatedRatePairs();
|
||||
|
||||
Logging.instance.log(
|
||||
"ExchangeDataLoadingService.loadAll finished in ${DateTime.now().difference(start).inSeconds} seconds",
|
||||
level: LogLevel.Info,
|
||||
|
|
Loading…
Reference in a new issue