Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some main loop crashes #2008

Merged
92 commits merged into from Nov 2, 2022
Merged

Fix some main loop crashes #2008

92 commits merged into from Nov 2, 2022

Conversation

ghost
Copy link

@ghost ghost commented Oct 13, 2022

Related to #2002

@ghost ghost requested review from cipig and smk762 October 13, 2022 19:43
@ghost ghost changed the title Fix/loop crashes Fix loop crashes Oct 13, 2022
@ghost ghost mentioned this pull request Oct 13, 2022
@cipig
Copy link
Member

cipig commented Oct 13, 2022

what about https://github.com/KomodoPlatform/atomicDEX-Desktop/blob/dev/src/core/atomicdex/models/qt.portfolio.model.cpp#L157 ? can you enable that log line too? because i fear that this task takes a much too long time... you can also see this when you have 200 coins enabled and simply stay on portfolio page, the app will stall for couple seconds from time to time... and i suspect it does in this task

@ghost
Copy link
Author

ghost commented Oct 14, 2022

what about https://github.com/KomodoPlatform/atomicDEX-Desktop/blob/dev/src/core/atomicdex/models/qt.portfolio.model.cpp#L157 ? can you enable that log line too? because i fear that this task takes a much too long time... you can also see this when you have 200 coins enabled and simply stay on portfolio page, the app will stall for couple seconds from time to time... and i suspect it does in this task

Done

@ghost
Copy link
Author

ghost commented Oct 14, 2022

Ok I got my first crash during the night: I just let the application idle and saw a double free this morning :/

Capture d’écran 2022-10-14 à 11 14 20 AM

@ghost
Copy link
Author

ghost commented Oct 14, 2022

Ok I got my first crash during the night: I just let the application idle and saw a double free this morning :/

Capture d’écran 2022-10-14 à 11 14 20 AM

Found where the double free happens:

Capture d’écran 2022-10-14 à 2 05 11 PM

Capture d’écran 2022-10-14 à 2 05 30 PM

@ghost ghost marked this pull request as ready for review October 17, 2022 09:27
@ghost ghost requested review from Canialon, SirSevenG and tonymorony October 17, 2022 09:27
@ghost
Copy link
Author

ghost commented Oct 17, 2022

Please test whenever you have time, the CI builds in debug mode so if you can run your testing session with gdb/lldb or any other debugger it will help me catch where are the problems

Also Ubuntu CI seems broken I cannot make it build in debug, if someone can help me :)

cc. @cipig @SirSevenG @smk762 @Canialon @tonymorony

@smk762
Copy link
Collaborator

smk762 commented Oct 17, 2022

Please test whenever you have time, the CI builds in debug mode so if you can run your testing session with gdb/lldb or any other debugger it will help me catch where are the problems

Also Ubuntu CI seems broken I cannot make it build in debug, if someone can help me :)

cc. @cipig @SirSevenG @smk762 @Canialon @tonymorony

For
https://github.com/KomodoPlatform/atomicDEX-Desktop/actions/runs/3263950250/
https://github.com/KomodoPlatform/atomicDEX-Desktop/actions/runs/3263935815/
https://github.com/KomodoPlatform/atomicDEX-Desktop/actions/runs/3263716672

  • Using Ubuntu 22.04 will need a bunch of other updates.
2022-10-17T09:30:45.2856985Z The following packages have unmet dependencies:
2022-10-17T09:30:45.3811344Z  libunwind-14-dev : Breaks: libunwind-dev but 1.3.2-2build2 is to be installed
2022-10-17T09:30:45.4710974Z E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
2022-10-17T09:30:45.5579793Z --2022-10-17 09:30:45--  https://apt.llvm.org/llvm.sh
...
2022-10-17T09:33:11.6856841Z CMake Error: CMake was unable to find a build program corresponding to "Ninja".  CMAKE_MAKE_PROGRAM is not set.  You probably need to select a different build tool.

This one failed because Github has CI brownouts periodically to remind users to update before 18.04 is EOL.
https://github.com/KomodoPlatform/atomicDEX-Desktop/actions/runs/3251140723/attempts/1

Give 20.04 a shot.

@cipig
Copy link
Member

cipig commented Oct 17, 2022

there are several changes needed to make it compile under ubuntu 22.04... the above error comes from this package: https://github.com/KomodoPlatform/atomicDEX-Desktop/blob/dev/ci_tools_atomic_dex/ci_scripts/linux_script.sh#L28
... libgstreamer-plugins-base1.0-dev ... whatever that is ... anyway, because of the error no other packages from the list are installed ... and ninja-build is needed to build ... btw, all packages mentioned there are already installed (likely by QT) by the time the build process reaches that point

but there is more... had to add include <optional> to another file, which i forgot... but it will be visible as soon as the above package problem is solved

btw, my builds are made with 20.04 since a long time, so i already use ADEX Desktop compiled for 20.04: https://github.com/cipig/atomicDEX-Desktop/blob/nogeo/.github/workflows/atomicdex-desktop-ci.yml#L32
it will make no difference regarding this problem

@cipig
Copy link
Member

cipig commented Oct 17, 2022

oh, doesn't compile for ubuntu any more:

CMake Error at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/cmake/install/linux/linux_post_install.cmake:37 (message):
  Didn't find
  /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/ci_tools_atomic_dex/linux_misc/linuxdeployqt-7-x86_64.AppImage
-- PROJECT_LIB_PATH path is -> /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/bin/AntaraAtomicDexAppDir/usr/lib
-- TARGET_APP_PATH path is -> /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/bundled/linux
-- VCPKG package manager enabled
FAILED: CMakeFiles/install.util 
cd /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug && /usr/local/bin/cmake -P cmake_install.cmake
ninja: build stopped: subcommand failed.
Call Stack (most recent call first):
  src/cmake_install.cmake:46 (include)
  cmake_install.cmake:72 (include)

@ghost
Copy link
Author

ghost commented Oct 17, 2022

ci_tools_atomic_dex/ci_tools_atomic_dex/

It's weird, CMake wrote twice ci_tools_atomic_dex in the path

@cipig
Copy link
Member

cipig commented Oct 24, 2022

i managed to make it crash... it was running in the background... this are the last entries in log file/console:

[17:43:36] [info] [band.provider.cpp:54] [525874]: start fetching oracle
[17:43:36] [error] [cpprestsdk.utilities.cpp:51] [525881]: pplx task error: Error resolving address
[17:43:42] [info] [internet.checker.service.cpp:173] [525874]: mm2 is alive, checking if ware able to fetch a simple orderbook
[17:43:42] [info] [internet.checker.service.cpp:130] [525901]: Connectivity is true for the endpoint: http://127.0.0.1:7783
[17:43:47] [warning] [orderbook.scanner.service.cpp:106] [525874]: MM2 Service not launched yet - skipping
[17:43:47] [info] [komodo.prices.cpp:82] [525874]: url: https://myprice.cipig.net:1717/api/v2/tickers?expire_at=21600
[17:43:47] [info] [komodo.prices.provider.cpp:35] [525874]: komodo price service tick loop
[17:43:47] [info] [komodo.prices.provider.cpp:48] [525914]: komodo price registry size: 240
[17:43:47] [debug] [app.cpp:684] [525914]: on_fiat_rate_updated
[17:43:47] [info] [qt.portfolio.page.cpp:103] [525914]: Updating portfolio values with model: true
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: WOO-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDT-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: UNI-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BAL-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDT-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SNX-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SMTF-v2
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ADA-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SUSHI-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BUSD-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: INJ-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ENJ-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: QKC-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: PPC-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: PGX-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: APE-FTM20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XLM-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SAND-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NEAR-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GMX-AVX20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MKR-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MIR-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ONT-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BRZ-AVX20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ONE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDC-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: QNT-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KCS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JPYC-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JGBP-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XRP-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CAKE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ARPA-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GMT-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: WAVES-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TRX-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FET-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DODO-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CELR-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GLM-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NZDS-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CHZ-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CRV-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BNB
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CHTA
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: PND
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NYAN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XMY
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CHIPS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: UNO
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NAV
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ABY
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LCC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ACTN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DOI
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TEL-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XEC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NAV-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SXP-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BSTY
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MANA-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTCZ-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XSGD-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SYS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BLK
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BLK-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CRO-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MCL
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MOVR
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTX
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: RTM
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TRYB-AVX20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SOL-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ZIL-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DP
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: HEX-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DGB
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LDO-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DASH
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MATIC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AVN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GRS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DIMI
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KMD-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LYNX
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ETC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: COMP-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: VAL
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: VRSC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ECA
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SCA
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDC-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: RUNES
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: OCEAN-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GLEEC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FJC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KMD
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FTC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SFUSD
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: EMC2
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: EURS-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTCZ
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: IL8P
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ZET
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: MONA
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DAI-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AXE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DGC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ANKR-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: EFL
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: WHIVE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LOOM-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ZER
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USBL
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JEUR-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTC-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NMC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KSM-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DEX
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LBC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AXS-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JST-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NENG
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AUR
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ILN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: UIS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: PAXG-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SHIB-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CDN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BRZ-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AAVE-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TRYB-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FLOW-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CLC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: PPC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: IOTA-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: VRM
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KOIN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SPACE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FIRO
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: RVN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: EOS-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LTC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XVC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: QTUM
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JCHF-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BNT-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: QC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: EGLD-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: VET-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: WCN
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDT-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: THC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: JJPY-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: SUPERNET
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GLMR
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BAT-KRC20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TRC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: TKL
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: YFI-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XVS
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XTZ-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ETH
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FIL-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GRT-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LINK-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: LRC-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FTM
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FLUX-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ETH-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: KNC-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: GALA-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ZEC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: CADC-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ETH-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: USDC-FTM20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: XRG
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: AVAX
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: NEXO-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ATOM-PLG20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: FLUX
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DOGE
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: VITE-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BIDR-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ADX-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: DOT-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: IOTX-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTC
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BTTC-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BCH
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: BAND-FTM20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: ELF-BEP20
[17:43:47] [debug] [qt.portfolio.model.cpp:153] [525914]: updated currency values of: 1INCH-PLG20
[17:44:17] [warning] [orderbook.scanner.service.cpp:106] [525874]: MM2 Service not launched yet - skipping
[17:44:17] [info] [komodo.prices.cpp:82] [525874]: url: https://myprice.cipig.net:1717/api/v2/tickers?expire_at=21600
[17:44:17] [info] [komodo.prices.provider.cpp:35] [525874]: komodo price service tick loop
[17:44:18] [info] [komodo.prices.provider.cpp:48] [525900]: komodo price registry size: 240
[17:44:18] [debug] [app.cpp:684] [525900]: on_fiat_rate_updated
[17:44:18] [info] [qt.portfolio.page.cpp:103] [525900]: Updating portfolio values with model: true
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: WOO-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDT-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: UNI-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BAL-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDT-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SNX-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SMTF-v2
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ADA-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SUSHI-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BUSD-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: INJ-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ENJ-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: QKC-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: PPC-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: PGX-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: APE-FTM20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XLM-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SAND-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NEAR-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GMX-AVX20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MKR-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MIR-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ONT-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BRZ-AVX20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ONE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDC-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: QNT-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KCS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JPYC-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JGBP-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XRP-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CAKE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ARPA-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GMT-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: WAVES-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TRX-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FET-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DODO-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CELR-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GLM-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NZDS-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CHZ-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CRV-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BNB
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CHTA
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: PND
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NYAN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XMY
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CHIPS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: UNO
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NAV
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ABY
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LCC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ACTN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DOI
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TEL-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XEC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NAV-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SXP-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BSTY
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MANA-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTCZ-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XSGD-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SYS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BLK
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BLK-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CRO-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MCL
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MOVR
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTX
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: RTM
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TRYB-AVX20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SOL-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ZIL-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DP
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: HEX-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DGB
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LDO-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DASH
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MATIC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AVN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GRS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DIMI
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KMD-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LYNX
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ETC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: COMP-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: VAL
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: VRSC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ECA
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SCA
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDC-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: RUNES
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: OCEAN-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GLEEC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FJC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KMD
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FTC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SFUSD
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: EMC2
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: EURS-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTCZ
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: IL8P
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ZET
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: MONA
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DAI-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AXE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DGC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ANKR-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: EFL
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: WHIVE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LOOM-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ZER
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USBL
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JEUR-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTC-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NMC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KSM-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DEX
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LBC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AXS-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JST-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NENG
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AUR
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ILN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: UIS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: PAXG-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SHIB-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CDN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BRZ-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AAVE-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TRYB-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FLOW-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CLC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: PPC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: IOTA-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: VRM
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KOIN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SPACE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FIRO
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: RVN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: EOS-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LTC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XVC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: QTUM
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JCHF-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BNT-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: QC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: EGLD-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: VET-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: WCN
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDT-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: THC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: JJPY-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: SUPERNET
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GLMR
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BAT-KRC20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TRC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: TKL
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: YFI-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XVS
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XTZ-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ETH
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FIL-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GRT-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LINK-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: LRC-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FTM
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FLUX-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ETH-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: KNC-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: GALA-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ZEC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: CADC-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ETH-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: USDC-FTM20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: XRG
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: AVAX
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: NEXO-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ATOM-PLG20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: FLUX
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DOGE
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: VITE-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BIDR-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ADX-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: DOT-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: IOTX-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTC
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BTTC-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BCH
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: BAND-FTM20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: ELF-BEP20
[17:44:18] [debug] [qt.portfolio.model.cpp:153] [525900]: updated currency values of: 1INCH-PLG20
[17:44:23] [error] [main.prerequisites.hpp:107] [525874]: sigabort received, cleaning mm2
[17:44:24] [error] [main.prerequisites.hpp:113] [525874]: stacktrace:  0# boost::stacktrace::safe_dump_to(char const*) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/boost/stacktrace/safe_dump_to.hpp:124
 1# 0x00007F07DAA63D60 in /lib/x86_64-linux-gnu/libc.so.6
 2# QV4::Lookup::getterFallback(QV4::Lookup*, QV4::ExecutionEngine*, QV4::Value const&) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Qml.so.5
 3# 0x00007F07C0A17B91

btw, where does [17:44:17] [warning] [orderbook.scanner.service.cpp:106] [525874]: MM2 Service not launched yet - skipping come from? seeing this pretty often, also without crashes... mm2 is running fine

@cipig
Copy link
Member

cipig commented Oct 25, 2022

got a new one

[02:44:41] [warning] [mm2.service.cpp:2548] [541806]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541796]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BIDR-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541807]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ATOM-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541796]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541807]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541804]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "IOTX-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541804]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541802]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "KSM-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541802]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ELF-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541824]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "DOT-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541824]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541812]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BRZ-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541812]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "1INCH-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541799]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "GLMR",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541799]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541804]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ZIL-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541804]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BTTC-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541826]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "WHIVE",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541826]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541808]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541800]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BLK",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541808]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BAT-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541800]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541795]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "OCEAN-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541795]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541807]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "AAVE-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541796]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BLK-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541796]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541807]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541791]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "LRC-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541791]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541806]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CRV-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541817]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "LINK-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541806]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541817]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541807]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CHZ-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541807]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541798]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CRO-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541798]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541799]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "FLOW-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541799]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541814]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "NZDS-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541814]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541795]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BTCZ-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541795]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541809]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "DAI-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541802]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "FET-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541809]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541794]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "TRX-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541807]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "GLM-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541794]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541807]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541802]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541814]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BNT-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CELR-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541814]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541809]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "GMT-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541809]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ETC",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541809]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541809]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541818]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CAKE",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541807]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541818]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541801]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "WAVES-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541801]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541820]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "XRP-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541820]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541829]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BTC-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541829]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541819]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "JPYC-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541807]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ARPA-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541819]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541812]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "DODO-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541812]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541811]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "JGBP-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541811]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541792]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "CHTA",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541792]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541815]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "KMD-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541792]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "JST-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541815]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541792]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541799]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "QNT-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541799]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "KCS",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [error] [komodo.prices.provider.cpp:71] [541824]: error occured when fetching price: Request canceled by user.
[02:44:41] [info] [komodo.prices.provider.cpp:35] [541824]: komodo price service tick loop
[02:44:41] [info] [komodo.prices.cpp:82] [541824]: url: https://myprice.cipig.net:1717/api/v2/tickers?expire_at=21600
[02:44:41] [error] [global.provider.cpp:452] [541794]: pplx task error from async_fetch_fiat_rates: Error resolving address - nb_try 25
[02:44:41] [error] [mm2.service.cpp:2540] [541829]: pplx task error: Request canceled by user. from: batch_fetch_orders_and_swap, request: [
    {
        "method": "my_orders",
        "userpass": ""
    },
    {
        "from_timestamp": 1546300800,
        "limit": 50,
        "method": "my_recent_swaps",
        "page_number": 1,
        "to_timestamp": 1669161600,
        "userpass": ""
    },
    {
        "method": "active_swaps",
        "statuses": true,
        "userpass": ""
    }
]
terminate called without an active exception
[02:44:41] [error] [main.prerequisites.hpp:107] [541789]: sigabort received, cleaning mm2
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: batch_fetch_orders_and_swap, request: [
    {
        "method": "my_orders",
        "userpass": ""
    },
    {
        "from_timestamp": 1546300800,
        "limit": 50,
        "method": "my_recent_swaps",
        "page_number": 1,
        "to_timestamp": 1669161600,
        "userpass": ""
    },
    {
        "method": "active_swaps",
        "statuses": true,
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: batch_fetch_orders_and_swap, request: [
    {
        "method": "my_orders",
        "userpass": ""
    },
    {
        "from_timestamp": 1546300800,
        "limit": 50,
        "method": "my_recent_swaps",
        "page_number": 1,
        "to_timestamp": 1669161600,
        "userpass": ""
    },
    {
        "method": "active_swaps",
        "statuses": true,
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541805]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "JCHF-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541802]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "UNI-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "USDT-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541809]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ADA-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SUSHI-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "PGX-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BUSD-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541806]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "MANA-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541806]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "QKC-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ONE",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ANKR-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "VET-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541806]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "XLM-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541806]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "MKR-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "NENG",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541805]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541790]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "NEAR-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541790]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541802]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SXP-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541805]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "MIR-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "GMX-AVX20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "TRC",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541805]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SOL-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541805]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BAL-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "INJ-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541805]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "MATIC",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "TRYB-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "NAV-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541805]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "PPC-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541805]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SAND-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "MOVR",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "USDC-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "USDC-FTM20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541805]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "TEL-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541805]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "USDT-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "WOO-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SMTF-v2",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SNX-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ENJ-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541793]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "APE-FTM20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "BRZ-AVX20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541828]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "ONT-BEP20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541828]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541808]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "FIRO",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541808]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541793]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541822]: pplx task error: Failed to read HTTP status line from: batch_fetch_orders_and_swap, request: [
    {
        "method": "my_orders",
        "userpass": ""
    },
    {
        "from_timestamp": 1546300800,
        "limit": 50,
        "method": "my_recent_swaps",
        "page_number": 1,
        "to_timestamp": 1669161600,
        "userpass": ""
    },
    {
        "method": "active_swaps",
        "statuses": true,
        "userpass": ""
    }
]
[02:44:41] [error] [mm2.service.cpp:2540] [541825]: pplx task error: Failed to read HTTP status line from: batch_fetch_orders_and_swap, request: [
    {
        "method": "my_orders",
        "userpass": ""
    },
    {
        "from_timestamp": 1546300800,
        "limit": 50,
        "method": "my_recent_swaps",
        "page_number": 1,
        "to_timestamp": 1669161600,
        "userpass": ""
    },
    {
        "method": "active_swaps",
        "statuses": true,
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541822]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541825]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541802]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "LDO-PLG20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541802]: We should reset connection here
[02:44:41] [warning] [mm2.service.cpp:2548] [541809]: We should reset connection here
[02:44:41] [error] [mm2.service.cpp:2540] [541829]: pplx task error: Failed to read HTTP status line from: fetch_single_balance, request: [
    {
        "coin": "SHIB-KRC20",
        "method": "my_balance",
        "userpass": ""
    }
]
[02:44:41] [warning] [mm2.service.cpp:2548] [541829]: We should reset connection here
[02:44:42] [info] [global.provider.cpp:443] [541794]: Forcing update providers
[02:44:51] [error] [global.provider.cpp:452] [541808]: pplx task error from async_fetch_fiat_rates: Error resolving address - nb_try 26
[02:44:52] [info] [global.provider.cpp:443] [541808]: Forcing update providers
[02:45:01] [error] [mm2.service.cpp:2540] [541823]: pplx task error: Error resolving address from: process_tx_tokenscan, request: null
[02:45:11] [error] [komodo.prices.provider.cpp:71] [541806]: error occured when fetching price: Error resolving address
[02:45:14] [error] [main.prerequisites.hpp:113] [541789]: stacktrace:  0# boost::stacktrace::safe_dump_to(char const*) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/boost/stacktrace/safe_dump_to.hpp:124
 1# 0x00007FD047C63D60 in /lib/x86_64-linux-gnu/libc.so.6
 2# gsignal in /lib/x86_64-linux-gnu/libc.so.6
 3# abort in /lib/x86_64-linux-gnu/libc.so.6
 4# 0x00007FD05086A7EC in /usr/lib/x86_64-linux-gnu/libstdc++.so.6
 5# 0x00007FD050875966 in /usr/lib/x86_64-linux-gnu/libstdc++.so.6
 6# 0x00007FD0508759D1 in /usr/lib/x86_64-linux-gnu/libstdc++.so.6
 7# ~thread at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/thread:158
 8# ~mm2_service at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../src/core/atomicdex/services/mm2/mm2.service.cpp:378
 9# ~mm2_service at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../src/core/atomicdex/services/mm2/mm2.service.cpp:321
10# std::default_delete<antara::gaming::ecs::base_system>::operator()(antara::gaming::ecs::base_system*) const at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h:86
11# std::__uniq_ptr_impl<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >::reset(antara::gaming::ecs::base_system*) at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h:182
12# std::__uniq_ptr_impl<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >::operator=(std::__uniq_ptr_impl<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >&&) at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h:168
13# std::__uniq_ptr_data<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system>, true, true>::operator=(std::__uniq_ptr_data<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system>, true, true>&&) at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h:212
14# std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >::operator=(std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >&&) at /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h:371
15# __gnu_cxx::__normal_iterator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > > > ranges::remove_if_fn::operator()<__gnu_cxx::__normal_iterator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > > >, __gnu_cxx::__normal_iterator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > > >, bool (antara::gaming::ecs::base_system::*)() const, ranges::identity>(__gnu_cxx::__normal_iterator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > > >, __gnu_cxx::__normal_iterator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > > >, bool (antara::gaming::ecs::base_system::*)() const, ranges::identity) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/algorithm/remove_if.hpp:54
16# _ZNK6ranges12remove_if_fnclIRSt6vectorISt10unique_ptrIN6antara6gaming3ecs11base_systemESt14default_deleteIS7_EESaISA_EEMS7_KFbvENS_8identityEEEN4meta6detail5_condIXsr6detailE15_borrowed_rangeIT_EEE6invokeIDTclL_ZNS_1_5beginEEclscPDoFRSK_vELDnEEEENS_8danglingEEEOSK_T0_T1_ at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/algorithm/remove_if.hpp:67
17# std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >& ranges::actions::remove_if_fn::operator()<std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&, bool (antara::gaming::ecs::base_system::*)() const, ranges::identity>(std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&, bool (antara::gaming::ecs::base_system::*)() const, ranges::identity) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/action/remove_if.hpp:56
18# operator()<std::vector<std::unique_ptr<antara::gaming::ecs::base_system> > &> at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/vendor/antara-gaming_sdk/modules/ecs/antara/gaming/ecs/system.manager.cpp:41
19# decltype (((antara::gaming::ecs::system_manager::sweep_systems_()::$_2&){parm#1})((std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&){parm#2})) ranges::invoke_fn::operator()<antara::gaming::ecs::system_manager::sweep_systems_()::$_2&, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&>(antara::gaming::ecs::system_manager::sweep_systems_()::$_2&, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/functional/invoke.hpp:142
20# decltype (ranges::invoke(static_cast<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>(*((*this).t_)), static_cast<std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&>({parm#1}))) ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>::operator()<std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&>(std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/functional/reference_wrapper.hpp:109
21# decltype (((ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>&){parm#1})((std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&){parm#2})) ranges::invoke_fn::operator()<ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>&, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&>(ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>&, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >&) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/functional/invoke.hpp:142
22# ranges::detail::in_fun_result<std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >*, ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2> > ranges::for_each_fn::operator()<std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >*, ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>, ranges::identity>(std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >*, std::vector<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> >, std::allocator<std::unique_ptr<antara::gaming::ecs::base_system, std::default_delete<antara::gaming::ecs::base_system> > > >*, ranges::reference_wrapper<antara::gaming::ecs::system_manager::sweep_systems_()::$_2>, ranges::identity) const at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/algorithm/for_each.hpp:48
23# _ZNK6ranges11for_each_fnclIRSt5arrayISt6vectorISt10unique_ptrIN6antara6gaming3ecs11base_systemESt14default_deleteIS8_EESaISB_EELm3EEZNS7_14system_manager14sweep_systems_EvE3$_2NS_8identityEEENS_6detail13in_fun_resultIN4meta6detail5_condIXsr6detailE15_borrowed_rangeIT_EEE6invokeIDTclL_ZNS_1_5beginEEclscPDoFRSO_vELDnEEEENS_8danglingEEET0_EEOSO_SY_T1_ at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../vcpkg-repo/installed/x64-linux/include/range/v3/algorithm/for_each.hpp:62
24# antara::gaming::ecs::system_manager::sweep_systems_() at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/vendor/antara-gaming_sdk/modules/ecs/antara/gaming/ecs/system.manager.cpp:39
25# antara::gaming::ecs::system_manager::update() at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/vendor/antara-gaming_sdk/modules/ecs/antara/gaming/ecs/system.manager.cpp:?
26# antara::gaming::world::app::process_one_frame() at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../vendor/antara-gaming_sdk/modules/world/antara/gaming/world/world.app.cpp:58
27# atomic_dex::application::tick() at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../src/app/app.cpp:338
28# QtPrivate::FunctorCall<QtPrivate::IndexesList<>, QtPrivate::List<>, void, void (atomic_dex::application::*)()>::call(void (atomic_dex::application::*)(), atomic_dex::application*, void**) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../Qt/5.15.2/gcc_64/include/QtCore/qobjectdefs_impl.h:152
29# void QtPrivate::FunctionPointer<void (atomic_dex::application::*)()>::call<QtPrivate::List<>, void>(void (atomic_dex::application::*)(), atomic_dex::application*, void**) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../Qt/5.15.2/gcc_64/include/QtCore/qobjectdefs_impl.h:186
30# QtPrivate::QSlotObject<void (atomic_dex::application::*)(), QtPrivate::List<>, void>::impl(int, QtPrivate::QSlotObjectBase*, QObject*, void**, bool*) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../Qt/5.15.2/gcc_64/include/QtCore/qobjectdefs_impl.h:419
31# 0x00007FD044AD5F30 in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
32# QTimer::timeout(QTimer::QPrivateSignal) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
33# QTimer::timerEvent(QTimerEvent*) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
34# QObject::event(QEvent*) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
35# QApplicationPrivate::notify_helper(QObject*, QEvent*) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Widgets.so.5
36# QApplication::notify(QObject*, QEvent*) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Widgets.so.5
37# QCoreApplication::notifyInternal2(QObject*, QEvent*) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
38# QTimerInfoList::activateTimers() in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
39# 0x00007FD044AF8E99 in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
40# g_main_context_dispatch in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
41# 0x00007FD046523118 in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
42# g_main_context_iteration in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
43# QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
44# QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
45# QCoreApplication::exec() in /home/florian/Tools/AntaraAtomicDexAppDir/usr/bin/../lib/libQt5Core.so.5
46# run_app(int, char**) at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../src/app/main.prerequisites.hpp:500
47# main at /home/runner/work/atomicDEX-Desktop/atomicDEX-Desktop/ci_tools_atomic_dex/build-Debug/../../src/app/main.cpp:38
48# __libc_start_main in /lib/x86_64-linux-gnu/libc.so.6
49# _start in AntaraAtomicDexAppDir/usr/bin/atomicdex-desktop

terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
terminate called recursively
Segmentation fault

looks like this one is related to bad internet...

cipig
cipig previously approved these changes Oct 31, 2022
smk762
smk762 previously approved these changes Oct 31, 2022
Copy link
Collaborator

@smk762 smk762 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Progress has been made, and it seems the remaining problems are likely related to pre-existing problems related to #2026
App is sufficiently stable for release and we can tackle the cpprestsdk issues in next iteration as it is too large a task to complete before 0.5.7

@cipig
Copy link
Member

cipig commented Oct 31, 2022

agree, i had no hard crash with this in the last time
we should just reduce the logging to normal levels before 0.5.7, it generates 7MB in less then 1h atm

@ghost ghost dismissed stale reviews from smk762 and cipig via a980f3f November 1, 2022 11:03
@ghost ghost requested review from cipig and smk762 November 1, 2022 11:04
@ghost ghost requested a review from cipig November 1, 2022 13:53
@ghost ghost changed the title Fix loop crashes Fix some loop crashes Nov 1, 2022
@ghost ghost changed the title Fix some loop crashes Fix some main loop crashes Nov 1, 2022
@ghost ghost added this to Testing in AtomicDEX 0.5.7 Nov 1, 2022
@ghost ghost merged commit c264a4d into dev Nov 2, 2022
@ghost ghost moved this from Testing to Done in AtomicDEX 0.5.7 Nov 2, 2022
@smk762 smk762 mentioned this pull request Nov 18, 2022
@smk762 smk762 deleted the fix/loop_crashes branch August 7, 2023 07:40
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

None yet

2 participants