mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +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 {
|
try {
|
||||||
await Future.wait([
|
await Future.wait([
|
||||||
_loadChangeNowCurrencies(),
|
_loadChangeNowCurrencies(),
|
||||||
_loadChangeNowFixedRatePairs(),
|
// _loadChangeNowFixedRatePairs(),
|
||||||
_loadChangeNowEstimatedRatePairs(),
|
// _loadChangeNowEstimatedRatePairs(),
|
||||||
// loadSimpleswapFixedRateCurrencies(ref),
|
// loadSimpleswapFixedRateCurrencies(ref),
|
||||||
// loadSimpleswapFloatingRateCurrencies(ref),
|
// loadSimpleswapFloatingRateCurrencies(ref),
|
||||||
loadMajesticBankCurrencies(),
|
loadMajesticBankCurrencies(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
await _loadChangeNowFixedRatePairs();
|
||||||
|
await _loadChangeNowEstimatedRatePairs();
|
||||||
|
|
||||||
Logging.instance.log(
|
Logging.instance.log(
|
||||||
"ExchangeDataLoadingService.loadAll finished in ${DateTime.now().difference(start).inSeconds} seconds",
|
"ExchangeDataLoadingService.loadAll finished in ${DateTime.now().difference(start).inSeconds} seconds",
|
||||||
level: LogLevel.Info,
|
level: LogLevel.Info,
|
||||||
|
|
Loading…
Reference in a new issue