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

_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types] #15300

Closed
fryorcraken opened this issue Jun 21, 2024 · 17 comments
Closed
Labels

Comments

@fryorcraken
Copy link
Collaborator

fryorcraken commented Jun 21, 2024

Description

Trying to compile tag v2.29.0 on Fedora

Getting errors below.

QT 5.15.2

make:

src/status-im/status-desktop  f78eced9e ✔                                                                 9d15h  
▶ make LOG_LEVEL=TRACE -j 12          
find: ‘vendor/status-go/build/bin/libstatus.so’: No such file or directory
Building: resources.rcc
Compiling: translations
2059 resources added
Configuring: StatusQ
Configuring: DOtherSide
Building: status-go
Building: status-keycard-go
Building: QR-Code-generator
Building: DOtherSide
# github.com/mutecomm/go-sqlcipher/v4
In function ‘sqlite3Strlen30’,
    inlined from ‘sqlite3ColumnSetColl’ at sqlite3.c:123469:10:
sqlite3.c:33798:28: warning: ‘strlen’ reading 1 or more bytes from a region of size 0 [-Wstringop-overread]
33798 |   return 0x3fffffff & (int)strlen(z);
      |                            ^~~~~~~~~
In function ‘sqlite3ColumnSetColl’:
cc1: note: source object is likely at address zero
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp: In function ‘void dos_qqmlnetworkaccessmanager_setnetworkaccessible(DosQQmlNetworkAccessManager*, int)’:
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:417:58: warning: ‘NetworkAccessibility’ is deprecated [-Wdeprecated-declarations]
  417 |     auto accessible = static_cast<QNetworkAccessManager::NetworkAccessibility>(accessibility);
      |                                                          ^~~~~~~~~~~~~~~~~~~~
In file included from /home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/QNetworkAccessManager:1,
                 from /home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:32:
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkaccessmanager.h:95:41: note: declared here
   95 |     enum QT_DEPRECATED_NETWORK_API_5_15 NetworkAccessibility {
      |                                         ^~~~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:418:36: warning: ‘void QNetworkAccessManager::setNetworkAccessible(NetworkAccessibility)’ is deprecated [-Wdeprecated-declarations]
  418 |     netAccMgr->setNetworkAccessible(accessible);
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkaccessmanager.h:159:37: note: declared here
  159 |     QT_DEPRECATED_VERSION_5_15 void setNetworkAccessible(NetworkAccessibility accessible);
      |                                     ^~~~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp: In function ‘DosQModelIndex* dos_qmodelindex_child(const DosQModelIndex*, int, int)’:
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:1001:47: warning: ‘QModelIndex QModelIndex::child(int, int) const’ is deprecated: Use QAbstractItemModel::index [-Wdeprecated-declarations]
 1001 |     auto result = new QModelIndex(index->child(row, column));
      |                                   ~~~~~~~~~~~~^~~~~~~~~~~~~
In file included from /home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtCore/QModelIndex:1,
                 from /home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:27:
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtCore/qabstractitemmodel.h:455:20: note: declared here
  455 | inline QModelIndex QModelIndex::child(int arow, int acolumn) const
      |                    ^~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp: In function ‘DosQNetworkConfigurationManager* dos_qncm_create()’:
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:1455:21: warning: ‘QNetworkConfigurationManager’ is deprecated [-Wdeprecated-declarations]
 1455 |     auto *ncm = new QNetworkConfigurationManager();
      |                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/QNetworkConfigurationManager:1,
                 from /home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:34:
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkconfigmanager.h:59:56: note: declared here
   59 | class QT_DEPRECATED_BEARER_MANAGEMENT Q_NETWORK_EXPORT QNetworkConfigurationManager : public QObject
      |                                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:1457:69: warning: ‘QNetworkConfiguration’ is deprecated [-Wdeprecated-declarations]
 1457 |     auto netcfgList = ncm->allConfigurations(QNetworkConfiguration::Active);
      |                                                                     ^~~~~~
In file included from /home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkconfigmanager.h:49:
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkconfiguration.h:62:56: note: declared here
   62 | class QT_DEPRECATED_BEARER_MANAGEMENT Q_NETWORK_EXPORT QNetworkConfiguration
      |                                                        ^~~~~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp: In function ‘void dos_qncm_delete(DosQNetworkConfigurationManager*)’:
/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/lib/src/DOtherSide.cpp:1468:57: warning: ‘QNetworkConfigurationManager’ is deprecated [-Wdeprecated-declarations]
 1468 |     auto ncm = static_cast<QNetworkConfigurationManager *>(vptr);
      |                                                         ^
/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/include/QtNetwork/qnetworkconfigmanager.h:59:56: note: declared here
   59 | class QT_DEPRECATED_BEARER_MANAGEMENT Q_NETWORK_EXPORT QNetworkConfigurationManager : public QObject
      |                                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
Building: StatusQ
In file included from /home/fryorcraken/src/status-im/status-desktop/vendor/qzxing/src/zxing/zxing/ResultIO.cpp:22:
/home/fryorcraken/src/status-im/status-desktop/vendor/qzxing/src/zxing/zxing/Result.h:57:24: note: only here as a ‘friend’
   57 |   friend std::ostream& operator<<(std::ostream &out, Result& result);
      |                        ^~~~~~~~
Installing: StatusQ
Building: bin/nim_status_client
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
Error: execution of an external compiler program 'gcc -c  -w -fmax-errors=3 -pthread -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/src/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/inc/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/tools/ -DBR_USE_UNIX_TIME=1 -DBR_USE_URANDOM=1 -DBR_LE_UNALIGNED=1 -DBR_64=1  -DBR_amd64=1 -DBR_INT128=1 -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-zlib/zlib/csources -DHAVE_UNISTD_H -g3 -Og -O3 -fno-strict-aliasing -fno-ident   -I/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib -I/home/fryorcraken/src/status-im/status-desktop/src -o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c.o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c' failed with exit code: 1


/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘subB__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_69’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:171:38: error: passing argument 4 of ‘_subborrow_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  171 |       bOut = subborrow_u64(bIn, a, b, diff)
      |                                      ^~~~
      |                                      |
      |                                      NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_div.nim.c:10:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:59:61: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   59 |                 unsigned long long __Y, unsigned long long *__P)
      |                                         ~~~~~~~~~~~~~~~~~~~~^~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
make: *** [Makefile:549: bin/nim_status_client] Error 1
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@[email protected]:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~

make run

src/status-im/status-desktop  f78eced9e ✔ 
▶ make LOG_LEVEL=TRACE -j 12 run
Compiling: translations
Building: StatusQ
Building: DOtherSide
Installing: StatusQ
Building: bin/nim_status_client
s/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim: In function ‘find__impureZre_444’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:344:28: error: passing argument 1 of ‘pcre_exec’ from incompatible pointer type [-Wincompatible-pointer-types]
  344 |     res = pcre.exec(pattern.h, pattern.e, buf, bufSize.cint, start.cint, 0'i32,
      |                  ~~~~~~~~~~^~
      |                            |
      |                            tyObject_Pcre__4NaJVM04bDbMPb8m6boZlA *
In file included from nimcache/release/nim_status_client/@m..@svendor@snimbus-build-system@svendor@sNim@slib@[email protected]:9:
/usr/include/pcre.h:573:30: note: expected ‘const pcre *’ {aka ‘const struct real_pcre8_or_16 *’} but argument is of type ‘tyObject_Pcre__4NaJVM04bDbMPb8m6boZlA *’
  573 | PCRE_EXP_DECL int  pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
      |                              ^~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:344:42: error: passing argument 2 of ‘pcre_exec’ from incompatible pointer type [-Wincompatible-pointer-types]
  344 |     res = pcre.exec(pattern.h, pattern.e, buf, bufSize.cint, start.cint, 0'i32,
      |                                ~~~~~~~~~~^~
      |                                          |
      |                                          tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *
/usr/include/pcre.h:573:44: note: expected ‘const pcre_extra *’ but argument is of type ‘tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *’
  573 | PCRE_EXP_DECL int  pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
      |                                            ^~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim: In function ‘finalizeRegEx__impureZre_62’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:86:25: error: passing argument 1 of ‘pcre_free_study’ from incompatible pointer type [-Wincompatible-pointer-types]
   86 |     pcre.free_study(x.e)
      |                   ~~~~~~^ 
      |                         |
      |                         tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *
/usr/include/pcre.h:636:36: note: expected ‘pcre_extra *’ but argument is of type ‘tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *’
  636 | PCRE_EXP_DECL void pcre_free_study(pcre_extra *);
      |                                    ^~~~~~~~~~~~
compilation terminated due to -fmax-errors=3.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘subB__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_69’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:171:38: error: passing argument 4 of ‘_subborrow_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  171 |       bOut = subborrow_u64(bIn, a, b, diff)
      |                                      ^~~~
      |                                      |
      |                                      NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_div.nim.c:10:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:59:61: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   59 |                 unsigned long long __Y, unsigned long long *__P)
      |                                         ~~~~~~~~~~~~~~~~~~~~^~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@[email protected]:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
Error: execution of an external compiler program 'gcc -c  -w -fmax-errors=3 -pthread -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/src/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/inc/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/tools/ -DBR_USE_UNIX_TIME=1 -DBR_USE_URANDOM=1 -DBR_LE_UNALIGNED=1 -DBR_64=1  -DBR_amd64=1 -DBR_INT128=1 -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-zlib/zlib/csources -DHAVE_UNISTD_H -g3 -Og -O3 -fno-strict-aliasing -fno-ident   -I/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib -I/home/fryorcraken/src/status-im/status-desktop/src -o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c.o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c' failed with exit code: 1


make: *** [Makefile:549: bin/nim_status_client] Error 1

pcre versions:

▶ sudo dnf list --installed |grep pcre
mingw32-pcre2.noarch                                      10.42-5.fc40                                     @fedora                                      
pcre.x86_64                                               8.45-1.fc40.6                                    @fedora                                      
pcre-cpp.x86_64                                           8.45-1.fc40.6                                    @fedora                                      
pcre-devel.x86_64                                         8.45-1.fc40.6                                    @fedora                                      
pcre-utf16.x86_64                                         8.45-1.fc40.6                                    @fedora                                      
pcre-utf32.x86_64                                         8.45-1.fc40.6                                    @fedora                                      
pcre2.x86_64                                              10.42-2.fc40.2                                   @fedora                                      
pcre2-devel.x86_64                                        10.42-2.fc40.2                                   @fedora                                      
pcre2-syntax.noarch                                       10.42-2.fc40.2                                   @fedora                                      
pcre2-utf16.x86_64                                        10.42-2.fc40.2                                   @fedora                                      
pcre2-utf32.x86_64                                        10.42-2.fc40.2                                   @fedora      
@jrainville
Copy link
Member

It's the first time I see those errors.

It seems to all be in the nim-stint library.

Can you try to run with the V=1 argument. It should give more logs, in case something else would show up.

Maybe @jangko can help since he worked on nim-strint

@caybro
Copy link
Member

caybro commented Jun 21, 2024

What Fedora/GCC version? It looks like a too new compiler

@jangko
Copy link
Contributor

jangko commented Jun 22, 2024

status-im/nim-stint#153?

@fryorcraken
Copy link
Collaborator Author

Fedora 40, gcc-14

src/status-im/status-desktop  f78eced9e ✔                                                                                                      10d10h  
▶ dnf list --installed |grep gcc
annobin-plugin-gcc.x86_64                                 12.51-1.fc40                                     @updates                                     
gcc.x86_64                                                14.1.1-4.fc40                                    @updates                                     
gcc-c++.x86_64                                            14.1.1-4.fc40                                    @updates                                     
gcc-plugin-annobin.x86_64                                 14.1.1-4.fc40                                    @updates                                     
libgcc.x86_64                                             14.1.1-4.fc40                                    @updates                                     
mingw32-libgcc.x86_64                                     14.1.1-1.fc40        

@fryorcraken
Copy link
Collaborator Author

with V1 argument:

 make LOG_LEVEL=TRACE V=1 -j 12
bash ./scripts/force-rebuild-status-go.sh vendor/status-go/build/bin/libstatus.so
which cc &>/dev/null || { echo "C compiler (cc) not installed. Aborting."; exit 1; }
if [[ -e .update.timestamp ]]; then \
	if [[ $(cat .update.timestamp) -ne $(git log --pretty=format:%cd -n 1 --date=format-local:%s) ]]; then \
		echo -e "\nWarning: to ensure you are building in a supported repo state, please always run \"$(basename "make") update\" after \"git pull\"\n(it looks like you've forgotten to do this).\nThis also applies whenever you switch to a new branch or commit, e.g.: whenever you run \"git checkout ...\".\n"; \
	fi; \
fi
if [[ ! " -j12 --jobserver-auth=fifo:/tmp/GMfifo1041839 -- V=1 LOG_LEVEL=TRACE" =~ --jobserver[^=]+= ]]; then \
	NPROC=$(nproc); \
	if [[ ${NPROC} -gt 1 ]]; then \
		echo -e "\nTip of the day: this will probably build faster if you use \"$(basename "make") -j${NPROC} ...\".\n"; \
	fi; \
fi
echo -e "\033[92mCompiling:\033[39m translations"
Compiling: translations
"make" --no-print-directory build-nim
which cc &>/dev/null || { echo "C compiler (cc) not installed. Aborting."; exit 1; }
if [[ -z "" ]]; then git submodule update --init --recursive "vendor/nimbus-build-system"; fi; \
	NIM_BUILD_MSG=""\\x1B[92mBuilding:\\x1B[39m" Nim compiler" \
	V=1 \
	CC=cc \
	MAKE="make" \
	ARCH_OVERRIDE= \
	QUICK_AND_DIRTY_COMPILER=0 \
	"/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/scripts/build_nim.sh" "vendor/nimbus-build-system/vendor/Nim" ../Nim-csources-v1 ../nimble ""
echo -e "\033[92mBuilding:\033[39m StatusQ"
echo -e "\033[92mBuilding:\033[39m DOtherSide"
Building: StatusQ
Building: DOtherSide
cmake --build ui/StatusQ/build \
	--target StatusQ \
	--config Release \
	
cmake \
	--build vendor/DOtherSide/build \
	--config Release \
	
gmake[1]: Entering directory '/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/build'
gmake[1]: Entering directory '/home/fryorcraken/src/status-im/status-desktop/ui/StatusQ/build'
[  0%] Built target DOtherSideStatic_autogen_timestamp_deps
[  0%] Built target qzxing_autogen_timestamp_deps
[  0%] Built target SortFilterProxyModel_autogen_timestamp_deps
[  1%] Built target big_resources_statusq
[  5%] Built target DOtherSideStatic_autogen
[  2%] Built target rcc_object_statusq
[  2%] Built target SortFilterProxyModel_autogen
[  3%] Built target qzxing_autogen
[100%] Built target DOtherSideStatic
gmake[1]: Leaving directory '/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/build'
[ 17%] Built target SortFilterProxyModel
[ 85%] Built target qzxing
[ 85%] Built target StatusQ_autogen_timestamp_deps
[ 86%] Built target StatusQ_autogen
[ 86%] Built target big_resources_assets
[ 86%] Built target rcc_object_assets
[100%] Built target StatusQ
gmake[1]: Leaving directory '/home/fryorcraken/src/status-im/status-desktop/ui/StatusQ/build'
echo -e "\033[92mInstalling:\033[39m StatusQ"
Installing: StatusQ
cmake --install ui/StatusQ/build \
	
-- Install configuration: "Release"
-- Up-to-date: /home/fryorcraken/src/status-im/status-desktop/bin/StatusQ/libStatusQ.so
-- Up-to-date: /home/fryorcraken/src/status-im/status-desktop/bin/StatusQ/qmldir
echo -e "\\x1B[92mBuilding:\\x1B[39m" "bin/nim_status_client"
Building: bin/nim_status_client
"/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/scripts/env.sh" nim c  --verbosity:1 -d:chronicles_log_level="TRACE" -d:usePcreHeader --passL:-lpcre --passL:"-L/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/lib" --passL:"vendor/DOtherSide/build/lib/libDOtherSideStatic.a" --passL:"-L/home/qt/work/install/lib -lQt5QuickControls2 -lQt5Quick -lQt5QmlModels -lQt5Svg -lQt5Widgets -lQt5Multimedia -lQt5WebView -lQt5Gui -lQt5WebChannel -lQt5Qml -lQt5Network -lQt5Core" -d:release --outdir:./bin -d:DESKTOP_VERSION="`cat VERSION`" -d:STATUSGO_VERSION="`cat vendor/status-go/VERSION`" -d:GIT_COMMIT="`git log --pretty=format:'%h' -n 1`" -d:chronicles_sinks=textlines[stdout],textlines[nocolors,dynamic],textlines[file,nocolors] -d:chronicles_runtime_filtering=on -d:chronicles_default_output_device=dynamic -d:chronicles_log_level=trace -d:development \
	--passL:"-L/home/fryorcraken/src/status-im/status-desktop/vendor/status-go/build/bin" \
	--passL:"-lstatus" \
	--passL:"-L"/home/fryorcraken/src/status-im/status-desktop/vendor/status-keycard-go/build/libkeycard"" \
	--passL:"-lkeycard" \
	--passL:"vendor/QR-Code-generator/c/libqrcodegen.a" \
	--passL:"-lm" \
	 src/nim_status_client.nim
Hint: used config file '/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/config/nim.cfg' [Conf]
Hint: used config file '/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/config/config.nims' [Conf]
Hint: used config file '/home/fryorcraken/src/status-im/status-desktop/nim.cfg' [Conf]
Hint: used config file '/home/fryorcraken/src/status-im/status-desktop/config.nims' [Conf]
...................................................................................................................................................................................................................................................
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-taskpools/taskpools/taskpools.nim(184, 1) Hint: 'new' cannot raise 'AssertionDefect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app/core/tasks/threadpool.nim(63, 28) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
............
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/lexer.nim(172, 1) Hint: 'init' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(183, 64) Hint: 'parseJsonNode' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(22, 51) Hint: 'makePrivateRpcCall' cannot raise 'ValueError' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(22, 63) Hint: 'makePrivateRpcCall' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(22, 71) Hint: 'makePrivateRpcCall' cannot raise 'SerializationError' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(59, 63) Hint: 'callPrivateRPCWithChainId' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(70, 63) Hint: 'callPrivateRPC' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(89, 28) Hint: 'migrateKeyStoreDir' cannot raise 'ValueError' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(89, 40) Hint: 'migrateKeyStoreDir' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/backend/core.nim(89, 48) Hint: 'migrateKeyStoreDir' cannot raise 'SerializationError' [XCannotRaiseY]
..........................
/home/fryorcraken/src/status-im/status-desktop/src/env_cli_vars.nim(77, 47) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/env_cli_vars.nim(83, 50) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/dto/community.nim(3, 8) [DuplicateModuleImport]
..........................................................................................................................
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/shared_urls/dto/url_data.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/dto/chat.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/dto/chat.nim(8, 38) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/dto/community.nim(11, 38) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/dto/community.nim(539, 6) Hint: 'contains' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/backend/community_tokens_types.nim(1, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/dto/community_token.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/core/signals/remote_signals/community.nim(1, 8) [DuplicateModuleImport]
.......
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/social_links.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
......
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/link_preview_thumbnail.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/dto/contacts.nim(3, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/dto/contacts.nim(3, 36) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/status_contact_link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/status_community_link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/status_community_channel_link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/status_link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/standard_link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/link_preview.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/message.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/message.nim(4, 23) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/pinned_message_update.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/reaction.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/removed_message.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/bookmarks/dto/bookmark.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/dto/token_data.nim(3, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
.
/home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(1, 24) Hint: duplicate import of 'strformat'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/dto/token_data.nim(3, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(2, 32) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(407, 6) Hint: 'toIds' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/dto/notification.nim(3, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/dto/notification.nim(3, 36) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/dto/status_update.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/dto/status_update.nim(3, 1) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/devices/dto/installation.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/settings/dto/settings.nim(1, 31) Hint: duplicate import of 'tables'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/settings/dto/settings.nim(1, 8) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(3, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(3, 36) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 54) Hint: duplicate import of 'chronicles'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(3, 73) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(39, 6) Hint: '$' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/settings/dto/settings.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/settings/dto/settings.nim(5, 1) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/saved_address/dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/dto/account_dto.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/dto/keycard_dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/dto/keycard_dto.nim(12, 7) Hint: 'ParamKeycard' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/dto/keypair_dto.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..........
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/dto/accounts.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.......
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/devices/dto/local_pairing_event.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..............
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/backend/collectibles_types.nim(407, 6) Hint: 'toIds' is declared but not used [XDeclaredButNotUsed]
........
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(10, 7) Hint: 'DEFAULT_IS_COMMUNITY_PERMISSIONS_ENABLED' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(12, 7) Hint: 'DEFAULT_IS_COMMUNITY_TOKENS_ENABLED' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(21, 7) Hint: 'DEFAULT_IS_MULTI_NETWORK_ENABLED' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(51, 7) Hint: 'DEFAULT_SHOW_BROWSER_SELECTOR' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(53, 7) Hint: 'DEFAULT_OPEN_LINKS_IN_STATUS' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/global/local_account_sensitive_settings.nim(86, 7) Hint: 'DEFAULT_IS_DISCORD_IMPORT_TOOL_ENABLED' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app/global/utils.nim(1, 53) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/global/utils.nim(1, 16) [DuplicateModuleImport]
............................
/home/fryorcraken/src/status-im/status-desktop/src/backend/accounts.nim(163, 30) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/backend/accounts.nim(176, 30) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/backend/accounts.nim(187, 30) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/backend/accounts.nim(203, 30) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/utils.nim(3, 20) Hint: duplicate import of 'conversion'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/global/utils.nim(7, 32) [DuplicateModuleImport]
.........
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/keycard/service.nim(1, 16) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/keycard/internal.nim(1, 8) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/keycard/service.nim(1, 46) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/dto/generated_accounts.nim(3, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/service.nim(40, 44) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/service.nim(1, 28) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/service.nim(210, 8) Hint: 'getSubaccountDataForAccountId' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/accounts/service.nim(258, 8) Hint: 'getAccountSettings' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/service.nim(1, 94) Hint: duplicate import of 'times'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/service.nim(1, 84) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/activity_center.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.......
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/dto/profile_showcase.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/utils.nim(3, 8) Hint: duplicate import of 'chronicles'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/utils.nim(1, 22) [DuplicateModuleImport]
...........
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(3, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(2, 3) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(3, 46) Hint: duplicate import of 'tables'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(2, 9) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(5, 23) Hint: duplicate import of 'chronicles'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(3, 54) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(7, 8) Hint: duplicate import of 'stint'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(5, 72) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(8, 1) Hint: duplicate import of 'times'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/utils.nim(3, 75) [DuplicateModuleImport]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/dto.nim(4, 7) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/utils.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/contacts/service.nim(1, 24) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/service.nim(2, 11) Hint: duplicate import of 'os'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/service.nim(1, 74) [DuplicateModuleImport]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/service.nim(1, 24) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/chat/service.nim(434, 11) Hint: 'base64JPGPrefix' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/dto/sign_params.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/service.nim(1, 54) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/service.nim(1, 44) [DuplicateModuleImport]
.........
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/async_tasks.nim(2, 24) Hint: duplicate import of 'backend'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/service.nim(4, 24) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/service.nim(1, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/service.nim(3, 12) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/async_tasks.nim(101, 13) Hint: 'output' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/async_tasks.nim(115, 23) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/token/service.nim(24, 7) Hint: 'CRYPTO_SUB_UNITS_TO_FACTOR' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/currency/dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/currency/service.nim(1, 46) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/dto/derived_address_dto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/async_tasks.nim(98, 9) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/async_tasks.nim(97, 23) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/service.nim(1, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/service.nim(3, 12) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/service_token.nim(43, 21) Hint: 'flatTokensKey' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/wallet_account/service_token.nim(176, 6) Hint: 'getCurrencyFormat' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/pinned_message.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/urls_unfurling_plan.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/async_tasks.nim(1, 8) Hint: duplicate import of 'uuids'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/service.nim(1, 101) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/service.nim(1, 24) [DuplicateModuleImport]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/dto/seen_unseen_messages.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/service.nim(39, 5) Hint: 'NEW_LINE' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/message/service.nim(42, 7) Hint: 'WEEK_AS_MILLISECONDS' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/service.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/service.nim(7, 12) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app/core/tasks/common.nim(2, 3) Hint: duplicate import of 'json_serialization'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/activity_center/service.nim(1, 86) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/service.nim(1, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/service.nim(22, 35) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app/core/tasks/common.nim(2, 3) Hint: duplicate import of 'json_serialization'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/service.nim(1, 109) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym623' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym624' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym625' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym626' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym775' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym776' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym777' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym778' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community/service.nim(1590, 9) Hint: 'metricsType' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(4, 14) Hint: duplicate import of 'tables'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(4, 22) Hint: duplicate import of 'json_serialization'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(3, 57) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(4, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/coder.nim(3, 7) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/eth/dto/method_dto.nim(92, 6) Hint: 'call' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/cryptoRampDto.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/async_tasks.nim(5, 8) Hint: duplicate import of 'stint'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/service.nim(1, 53) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/async_tasks.nim(6, 33) Hint: duplicate import of 'backend'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/service.nim(5, 15) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(62, 27) Hint: 'readValue' cannot raise 'IOError' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/dto/stickers.nim(62, 56) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/async_tasks.nim(85, 32) Hint: conversion from Table[system.string, system.string] to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/async_tasks.nim(144, 9) Hint: 'output' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/async_tasks.nim(143, 23) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/transaction/service.nim(1, 70) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/bookmarks/service.nim(1, 16) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/dapp_permissions/service.nim(1, 16) [DuplicateModuleImport]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/dapp_permissions/dto/permission.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/dapp_permissions/dto/dapp.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/privacy/async_tasks.nim(1, 33) Hint: duplicate import of 'status_privacy'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/privacy/service.nim(11, 33) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
.......
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/dto/ens_username_dto.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/service.nim(1, 30) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/service.nim(2, 12) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/service.nim(219, 9) Hint: 'availability' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/service.nim(409, 9) Hint: 'toAddress' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/ens/service.nim(270, 8) Hint: 'extractCoordinates' is declared but not used [XDeclaredButNotUsed]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/provider/service.nim(1, 16) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/node_configuration/dto/node_config.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/profile/dto/profile_showcase_preferences.nim(1, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/profile/dto/profile_showcase_preferences.nim(1, 14) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/profile/service.nim(1, 16) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/profile/async_tasks.nim(6, 34) Hint: duplicate import of 'status_accounts'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/profile/service.nim(10, 34) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/service.nim(1, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(2, 12) Hint: duplicate import of 'ethtypes'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/service.nim(6, 12) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(3, 8) Hint: duplicate import of 'types'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/service.nim(22, 26) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app/core/tasks/common.nim(2, 3) Hint: duplicate import of 'json_serialization'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/stickers/service.nim(6, 68) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym434' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym435' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym542' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym699' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym890' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/writer.nim(155, 5) Hint: 'R`gensym891' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/about/service.nim(53, 25) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/saved_address/service.nim(1, 48) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/saved_address/async_tasks.nim(4, 15) Hint: duplicate import of 'backend'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/saved_address/service.nim(5, 15) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/devices/service.nim(1, 16) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/devices/service.nim(152, 9) Hint: 'photoPath' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/mailservers/dto/mailserver.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/mailservers/service.nim(18, 44) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/mailservers/service.nim(170, 11) Hint: 'h' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/gif/service.nim(1, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/currency_amount.nim(1, 38) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/async_tasks.nim(1, 8) Hint: duplicate import of 'stint'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/service.nim(1, 42) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/async_tasks.nim(1, 15) Hint: duplicate import of 'tables'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/service.nim(1, 16) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/service.nim(1, 36) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/async_tasks.nim(7, 31) Hint: duplicate import of 'qt'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/service.nim(4, 31) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/async_tasks.nim(9, 24) Hint: duplicate import of 'community'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/community_tokens/service.nim(30, 24) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(546, 28) Hint: 'err' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-json-serialization/json_serialization/reader.nim(452, 59) Hint: 'readValue' cannot raise 'Defect' [XCannotRaiseY]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
...
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/service/network_connection/service.nim(1, 63) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/network_connection/service.nim(98, 18) Hint: 'allKnown' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/service/network_connection/service.nim(98, 49) Hint: 'at' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/keycard_popup/internal/state_factory.nim(10, 1) Hint: duplicate import of 'service'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/keycard_popup/internal/state_factory.nim(9, 33) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/keycard_popup/internal/state_factory.nim(11, 1) Hint: duplicate import of 'service'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/keycard_popup/internal/state_factory.nim(10, 33) [DuplicateModuleImport]
................................................................................................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/keycard_popup/module.nim(12, 7) Hint: 'dummyUsage' is declared but not used [XDeclaredButNotUsed]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/controller.nim(370, 8) Hint: 'keyUID' is declared but not used [XDeclaredButNotUsed]
.......
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(8, 1) Hint: duplicate import of 'service'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(7, 45) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(9, 1) Hint: duplicate import of 'service'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(8, 45) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(13, 1) Hint: duplicate import of 'state_factory'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(12, 49) [DuplicateModuleImport]
............................................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/login_keycard_reading_keycard_state.nim(1, 23) Hint: duplicate import of 'global_singleton'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/internal/state_factory.nim(2, 23) [DuplicateModuleImport]
......................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/module.nim(15, 7) Hint: 'dummyUsage' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/startup/module.nim(16, 7) Hint: 'dummyUsage2' is declared but not used [XDeclaredButNotUsed]
..........
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/core/notifications/details.nim(3, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
.....................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/link_preview_model.nim(223, 9) Hint: 'itemsToInsert' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/emoji_reactions_model.nim(44, 10) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
....................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/chat_content/input_area/view.nim(131, 8) Hint: 'loadLinkPreviews' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/chat_content/input_area/view.nim(147, 8) Hint: 'urlsModelChanged' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/chat_content/input_area/controller.nim(164, 6) Hint: 'shouldAskToEnableLinkPreview' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/chat_content/messages/module.nim(21, 29) Hint: duplicate import of 'global_singleton'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/chat_content/messages/module.nim(10, 29) [DuplicateModuleImport]
....
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/chat_section/module.nim(702, 9) Hint: 'communityChat' is declared but not used [XDeclaredButNotUsed]
.............
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/pure/times.nim(2135, 39) Hint: 'parse' cannot raise 'Defect' [XCannotRaiseY]
.....
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/collectibles_entry.nim(1, 71) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/collectibles_entry.nim(1, 54) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/collectibles_entry.nim(82, 8) Hint: 'hasOwnership' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_models/collectibles_entry.nim(85, 8) Hint: 'getOwnership' is declared but not used [XDeclaredButNotUsed]
....
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/poc_wallet_connect/controller.nim(14, 18) Hint: duplicate import of 'app_signals'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/poc_wallet_connect/controller.nim(11, 18) [DuplicateModuleImport]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/poc_wallet_connect/tx_response_dto.nim(5, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/poc_wallet_connect/helpers.nim(5, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..........
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/all_tokens/sources_of_tokens_model.nim(34, 8) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/all_tokens/flat_tokens_model.nim(61, 8) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
..
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/all_tokens/address_per_chain_model.nim(31, 8) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/all_tokens/token_by_symbol_model.nim(64, 8) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
.............
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/assets/balances_model.nim(34, 8) Hint: 'countChanged' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/assets/view.nim(30, 8) Hint: 'groupedAccountAssetsModelChanged' is declared but not used [XDeclaredButNotUsed]
......................................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/wallet_section/send/view.nim(234, 25) Hint: 'e' is declared but not used [XDeclaredButNotUsed]
....................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/shared_modules/add_account/module.nim(16, 7) Hint: 'dummyUsage' is declared but not used [XDeclaredButNotUsed]
...............................................
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/profile/models/profile_save_data.nim(1, 8) [DuplicateModuleImport]
.
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(1, 29) Hint: duplicate import of 'strutils'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/profile/models/profile_save_data.nim(1, 14) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(60, 45) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(66, 48) Hint: conversion from string to itself is pointless [ConvFromXtoItselfNotNeeded]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(48, 7) Hint: 'sep' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/utils.nim(50, 6) Hint: 'defaultDataDir' is declared but not used [XDeclaredButNotUsed]
............
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/contacts/view.nim(115, 8) Hint: 'myMutualContactsModelChanged' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/contacts/view.nim(122, 8) Hint: 'blockedContactsModelChanged' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/contacts/view.nim(129, 8) Hint: 'receivedContactRequestsModelChanged' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/contacts/view.nim(136, 8) Hint: 'sentContactRequestsModelChanged' is declared but not used [XDeclaredButNotUsed]
..................................................
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(1, 8) Hint: duplicate import of 'json'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/ens_usernames/module.nim(1, 16) [DuplicateModuleImport]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(13, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(21, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(29, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(37, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(45, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(5, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(53, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(61, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(69, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/app_service/common/json_utils.nim(77, 10) Hint: 'getProp' is declared but not used [XDeclaredButNotUsed]
..........
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/keycard/module.nim(242, 7) Hint: 'isAccountInKnownAccounts' is declared but not used [XDeclaredButNotUsed]
.........
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/wallet/module.nim(22, 8) Hint: duplicate import of 'io_interface'; previous import here: /home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/profile_section/wallet/module.nim(3, 23) [DuplicateModuleImport]
.............................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/activity_center/item.nim(8, 7) Hint: 'CONTACT_REQUEST_PENDING_STATE' is declared but not used [XDeclaredButNotUsed]
....................
/home/fryorcraken/src/status-im/status-desktop/src/app/modules/main/communities/models/discord_import_tasks_model.nim(97, 11) Hint: 'errorsAndWarningsCount' is declared but not used [XDeclaredButNotUsed]
...................
/home/fryorcraken/src/status-im/status-desktop/src/app/boot/app_controller.nim(359, 9) Hint: 'args' is declared but not used [XDeclaredButNotUsed]
/home/fryorcraken/src/status-im/status-desktop/src/nim_status_client.nim(51, 71) Hint: ':anonymous' cannot raise 'Defect' [XCannotRaiseY]
CC: ../vendor/nim-stint/stint/private/uint_mul.nim
CC: ../vendor/nim-stint/stint/private/uint_div.nim
CC: ../vendor/nim-stint/stint/io.nim
CC: ../vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim
CC: app_service/common/utils.nim
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim: In function ‘find__impureZre_444’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:344:28: error: passing argument 1 of ‘pcre_exec’ from incompatible pointer type [-Wincompatible-pointer-types]
  344 |     res = pcre.exec(pattern.h, pattern.e, buf, bufSize.cint, start.cint, 0'i32,
      |                  ~~~~~~~~~~^~
      |                            |
      |                            tyObject_Pcre__4NaJVM04bDbMPb8m6boZlA *
In file included from nimcache/release/nim_status_client/@m..@svendor@snimbus-build-system@svendor@sNim@slib@[email protected]:9:
/usr/include/pcre.h:573:30: note: expected ‘const pcre *’ {aka ‘const struct real_pcre8_or_16 *’} but argument is of type ‘tyObject_Pcre__4NaJVM04bDbMPb8m6boZlA *’
  573 | PCRE_EXP_DECL int  pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
      |                              ^~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:344:42: error: passing argument 2 of ‘pcre_exec’ from incompatible pointer type [-Wincompatible-pointer-types]
  344 |     res = pcre.exec(pattern.h, pattern.e, buf, bufSize.cint, start.cint, 0'i32,
      |                                ~~~~~~~~~~^~
      |                                          |
      |                                          tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *
/usr/include/pcre.h:573:44: note: expected ‘const pcre_extra *’ but argument is of type ‘tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *’
  573 | PCRE_EXP_DECL int  pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
      |                                            ^~~~~~~~~~~~~~~~~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim: In function ‘finalizeRegEx__impureZre_62’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib/impure/re.nim:86:25: error: passing argument 1 of ‘pcre_free_study’ from incompatible pointer type [-Wincompatible-pointer-types]
   86 |     pcre.free_study(x.e)
      |                   ~~~~~~^ 
      |                         |
      |                         tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *
/usr/include/pcre.h:636:36: note: expected ‘pcre_extra *’ but argument is of type ‘tyObject_ExtraData__yyMVE6KUR2d9b9bvJHPJcNwA *’
  636 | PCRE_EXP_DECL void pcre_free_study(pcre_extra *);
      |                                    ^~~~~~~~~~~~
compilation terminated due to -fmax-errors=3.
CC: backend/interpret/cropped_image.nim
CC: backend/communities.nim
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
CC: ../vendor/nim-result/results.nim
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘subB__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_69’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:171:38: error: passing argument 4 of ‘_subborrow_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  171 |       bOut = subborrow_u64(bIn, a, b, diff)
      |                                      ^~~~
      |                                      |
      |                                      NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_div.nim.c:10:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:59:61: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   59 |                 unsigned long long __Y, unsigned long long *__P)
      |                                         ~~~~~~~~~~~~~~~~~~~~^~~
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
CC: ../vendor/nim-web3/web3/ethtypes.nim
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim: In function ‘addC__OOZvendorZnim45stintZstintZprivateZprimitivesZaddcarry95subborrow_63’:
/home/fryorcraken/src/status-im/status-desktop/vendor/nim-stint/stint/private/primitives/addcarry_subborrow.nim:149:37: error: passing argument 4 of ‘_addcarry_u64’ from incompatible pointer type [-Wincompatible-pointer-types]
  149 |       cOut = addcarry_u64(cIn, a, b, sum)
      |                                     ^~~
      |                                     |
      |                                     NU64 * {aka long unsigned int *}
In file included from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86gprintrin.h:39,
                 from /usr/lib/gcc/x86_64-redhat-linux/14/include/x86intrin.h:27,
                 from nimcache/release/nim_status_client/@m..@svendor@snim-stint@[email protected]:9:
/usr/lib/gcc/x86_64-redhat-linux/14/include/adxintrin.h:67:60: note: expected ‘long long unsigned int *’ but argument is of type ‘NU64 *’ {aka ‘long unsigned int *’}
   67 |                unsigned long long __Y, unsigned long long *__P)
      |                                        ~~~~~~~~~~~~~~~~~~~~^~~
CC: app_service/common/types.nim
CC: ../vendor/nimbus-build-system/vendor/Nim/lib/pure/base64.nim
CC: ../vendor/nimbus-build-system/vendor/Nim/lib/pure/uri.nim
Error: execution of an external compiler program 'gcc -c  -w -fmax-errors=3 -pthread -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/src/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/inc/ -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-bearssl/bearssl/abi/../csources/tools/ -DBR_USE_UNIX_TIME=1 -DBR_USE_URANDOM=1 -DBR_LE_UNALIGNED=1 -DBR_64=1  -DBR_amd64=1 -DBR_INT128=1 -I/home/fryorcraken/src/status-im/status-desktop/vendor/nim-zlib/zlib/csources -DHAVE_UNISTD_H -g3 -Og -O3 -fno-strict-aliasing -fno-ident   -I/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/vendor/Nim/lib -I/home/fryorcraken/src/status-im/status-desktop/src -o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c.o nimcache/release/nim_status_client/@m..@svendor@snim-stint@sstint@sprivate@suint_mul.nim.c' failed with exit code: 1


make: *** [Makefile:549: bin/nim_status_client] Error 1

@fryorcraken
Copy link
Collaborator Author

What gcc version do you usually use?

@caybro
Copy link
Member

caybro commented Jun 23, 2024

What gcc version do you usually use?

Fedora 39 and:

gcc (GCC) 13.3.1 20240522 (Red Hat 13.3.1-1)

@fryorcraken
Copy link
Collaborator Author

Don't upgrade to Fedora 40 then :)

I can't get gcc-13 to compile. I'll see if I can either install it via rpm in a chroot or just pin a version if nim-stint with the fix.

Is an upgrade to latest nim-stint planned?

@fryorcraken
Copy link
Collaborator Author

@caybro I was able to install gcc-13 with

sudo dnf --installroot=/home/fryorcraken/lib-fedora-39 localinstall src/gcc-13.2.1-3.fc39.x86_64.rpm --releasever=39

However, passing CC doesn't seem to be enough to stop the build process to use the system gcc at /usr/bin/gcc

make CC=/home/fryorcraken/lib-fedora-39/bin/gcc LOG_LEVEL=TRACE V=1 -j 12

(I chmod -x /usr/bin/gcc to see if it was still be used, and it is)

@fryorcraken
Copy link
Collaborator Author

Ok, I think I am on the right track with

Subject: [PATCH] Replace gcc with local version
---
Index: Makefile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/Makefile b/Makefile
--- a/Makefile	(revision eb6f037df019add26adaf572c1773d24a92ab7ba)
+++ b/Makefile	(revision efe5fa90c439b30eb77a6e3ed5f9fc4806d1ac1d)
@@ -89,7 +89,7 @@
 else ifeq ($(detected_OS),Windows)
  LIBSTATUS_EXT := dll
  PKG_TARGET := pkg-windows
- QRCODEGEN_MAKE_PARAMS := CC=gcc
+ QRCODEGEN_MAKE_PARAMS := CC=/home/fryorcraken/lib-fedora-39/bin/gcc
  RUN_TARGET := run-windows
  VCINSTALLDIR ?= C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\
  export VCINSTALLDIR
Index: nim.cfg
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/nim.cfg b/nim.cfg
--- a/nim.cfg	(revision eb6f037df019add26adaf572c1773d24a92ab7ba)
+++ b/nim.cfg	(revision efe5fa90c439b30eb77a6e3ed5f9fc4806d1ac1d)
@@ -1,4 +1,4 @@
 # we need to link C++ libraries
-gcc.linkerexe="g++"
+gcc.linkerexe="/home/fryorcraken/lib-fedora-39/bin/gcc"
 
 path = "src"

I just need to install more dev libs.

@fryorcraken
Copy link
Collaborator Author

▶ make CC=/home/fryorcraken/lib-fedora-39/bin/gcc LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/fryorcraken/lib-fedora-39/usr/lib64 LOG_LEVEL=TRACE V=1 -j 12
bash ./scripts/force-rebuild-status-go.sh vendor/status-go/build/bin/libstatus.so
Makefile:105: *** Cannot find your Qt5 installation. Please make sure to export correct Qt installation binaries path to PATH env.  Stop.
make: *** Waiting for unfinished jobs....
make: *** [Makefile:808: force-rebuild-status-go] Segmentation fault (core dumped)

When trying to pass the $LD_LIBRARY_PATH var to include my Fedora 39 library, it apparently messes with the build script ability to find QT5:

src/status-im/status-desktop  master ✗                                                                                          27m ⚑  
▶ env |grep -i qt
...
PATH=/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64/bin:/usr/lib64/qt5/bin:/home/fryorcraken/.local/share/pnpm:/home/fryorcraken/.yarn/bin:/home/fryorcraken/.config/yarn/global/node_modules/.bin:/home/froyer/.local/share/gem/ruby/3.0.0/bin:/home/fryorcraken/.node_modules/bin:/usr/local/sbin:/home/fryorcraken/.local/bin:/home/fryorcraken/.cargo/bin:/home/fryorcraken/.local/share/pnpm:/home/fryorcraken/.yarn/bin:/home/fryorcraken/.config/yarn/global/node_modules/.bin:/home/fryorcraken/.nvm/versions/node/v20.10.0/bin:/home/froyer/.local/share/gem/ruby/3.0.0/bin:/home/fryorcraken/.node_modules/bin:/usr/local/sbin:/home/fryorcraken/.local/bin:/home/fryorcraken/.cargo/bin:/home/fryorcraken/.cargo/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/var/lib/snapd/snap/bin:/home/fryorcraken/go/bin:/home/fryorcraken/.rvm/bin:/home/fryorcraken/go/bin:/home/fryorcraken/.rvm/bin
QTDIR=/home/fryorcraken/.local/lib/Qt/5.15.2/gcc_64

Error because it cannot find some libraries (expected as the library are present in a different dnf root)

src/status-im/status-desktop  master ✗                                                                                          27m ⚑  
▶ make CC=/home/fryorcraken/lib-fedora-39/bin/gcc LOG_LEVEL=TRACE V=1 -j 12
bash ./scripts/force-rebuild-status-go.sh vendor/status-go/build/bin/libstatus.so
which /home/fryorcraken/lib-fedora-39/bin/gcc &>/dev/null || { echo "C compiler (/home/fryorcraken/lib-fedora-39/bin/gcc) not installed. Aborting."; exit 1; }
if [[ -e .update.timestamp ]]; then \
	if [[ $(cat .update.timestamp) -ne $(git log --pretty=format:%cd -n 1 --date=format-local:%s) ]]; then \
		echo -e "\nWarning: to ensure you are building in a supported repo state, please always run \"$(basename "make") update\" after \"git pull\"\n(it looks like you've forgotten to do this).\nThis also applies whenever you switch to a new branch or commit, e.g.: whenever you run \"git checkout ...\".\n"; \
	fi; \
fi
if [[ ! " -j12 --jobserver-auth=fifo:/tmp/GMfifo1687758 -- V=1 LOG_LEVEL=TRACE CC=/home/fryorcraken/lib-fedora-39/bin/gcc" =~ --jobserver[^=]+= ]]; then \
	NPROC=$(nproc); \
	if [[ ${NPROC} -gt 1 ]]; then \
		echo -e "\nTip of the day: this will probably build faster if you use \"$(basename "make") -j${NPROC} ...\".\n"; \
	fi; \
fi
echo -e "\033[92mCompiling:\033[39m translations"
Compiling: translations
"make" --no-print-directory build-nim
which /home/fryorcraken/lib-fedora-39/bin/gcc &>/dev/null || { echo "C compiler (/home/fryorcraken/lib-fedora-39/bin/gcc) not installed. Aborting."; exit 1; }
if [[ -z "" ]]; then git submodule update --init --recursive "vendor/nimbus-build-system"; fi; \
	NIM_BUILD_MSG=""\\x1B[92mBuilding:\\x1B[39m" Nim compiler" \
	V=1 \
	CC=/home/fryorcraken/lib-fedora-39/bin/gcc \
	MAKE="make" \
	ARCH_OVERRIDE= \
	QUICK_AND_DIRTY_COMPILER=0 \
	"/home/fryorcraken/src/status-im/status-desktop/vendor/nimbus-build-system/scripts/build_nim.sh" "vendor/nimbus-build-system/vendor/Nim" ../Nim-csources-v1 ../nimble ""
echo -e "\033[92mBuilding:\033[39m StatusQ"
echo -e "\033[92mBuilding:\033[39m DOtherSide"
Building: StatusQ
cmake --build ui/StatusQ/build \
	--target StatusQ \
	--config Release \
	
Building: DOtherSide
cmake \
	--build vendor/DOtherSide/build \
	--config Release \
	
gmake[1]: Entering directory '/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/build'
gmake[1]: Entering directory '/home/fryorcraken/src/status-im/status-desktop/ui/StatusQ/build'
[  0%] Built target DOtherSideStatic_autogen_timestamp_deps
[  0%] Built target qzxing_autogen_timestamp_deps
[  0%] Built target SortFilterProxyModel_autogen_timestamp_deps
[  1%] Built target big_resources_statusq
[  5%] Built target DOtherSideStatic_autogen
[  2%] Built target rcc_object_statusq
[  2%] Built target SortFilterProxyModel_autogen
[  3%] Built target qzxing_autogen
[ 11%] Linking CXX static library libDOtherSideStatic.a
/home/fryorcraken/lib-fedora-39/bin/ar: error while loading shared libraries: libbfd-2.40-14.fc39.so: cannot open shared object file: No such file or directory
[ 17%] Built target SortFilterProxyModel
gmake[3]: *** [lib/CMakeFiles/DOtherSideStatic.dir/build.make:322: lib/libDOtherSideStatic.a] Error 127
gmake[2]: *** [CMakeFiles/Makefile2:101: lib/CMakeFiles/DOtherSideStatic.dir/all] Error 2
gmake[1]: *** [Makefile:136: all] Error 2
gmake[1]: Leaving directory '/home/fryorcraken/src/status-im/status-desktop/vendor/DOtherSide/build'
make: *** [Makefile:411: dotherside-build] Error 2
make: *** Waiting for unfinished jobs....
[ 17%] Linking CXX static library ../lib/libqzxing.a
/home/fryorcraken/lib-fedora-39/bin/ar: error while loading shared libraries: libbfd-2.40-14.fc39.so: cannot open shared object file: No such file or directory
gmake[4]: *** [qzxing/CMakeFiles/qzxing.dir/build.make:2504: lib/libqzxing.a] Error 127
gmake[3]: *** [CMakeFiles/Makefile2:435: qzxing/CMakeFiles/qzxing.dir/all] Error 2
gmake[3]: *** Waiting for unfinished jobs....
[ 17%] Built target big_resources_assets
gmake[2]: *** [CMakeFiles/Makefile2:283: CMakeFiles/StatusQ.dir/rule] Error 2
gmake[1]: *** [Makefile:221: StatusQ] Error 2
gmake[1]: Leaving directory '/home/fryorcraken/src/status-im/status-desktop/ui/StatusQ/build'
make: *** [Makefile:275: statusq-build] Error 2
src/status-im/status-desktop  master ✗                                                                                         29m ⚑  ⍉
▶ find ~/lib-fedora-39 -name libbfd-2.40-14.fc39.so 2>/dev/null
/home/fryorcraken/lib-fedora-39/usr/lib64/libbfd-2.40-14.fc39.so

Looks like my only solution is to try to use a nim-stint with the fix, hoping for no API change

@fryorcraken
Copy link
Collaborator Author

fryorcraken commented Jun 25, 2024

I was able to compile by using the nim-stint commit with the fix and telling gcc to ignore those warnings in nimbus-build-system.

▶ git diff
Submodule vendor/nim-stint 711cda445..9d2b382c5:
  > Fix GCC-14 [-Wincompatible-pointer-types] issue. (#153)
  > Fix pointer deref issue on Macos and Nim >= 2.0 (#152)
  > fix noInit to noinit; use evergreen GitHub Actions image versions (#151)
  > Upgrade github actions to v4 (#149)
  > Make decimal string parser raise ValueError instead of RangeDefect. (#148)
Submodule vendor/nimbus-build-system contains modified content
src/status-im/status-desktop  nim-stint ✗                                                                   18h26m ⚑  
▶ cd vendor/nimbus-build-system 

status-desktop/vendor/nimbus-build-system  cf0c9cf ✔                                                       173d12h ⚑  
▶ git diff
Submodule vendor/Nim-csources-v1 contains modified content

status-desktop/vendor/nimbus-build-system  cf0c9cf ✔                                                       173d12h ⚑  
▶ cd vendor/Nim-csources-v1 

nimbus-build-system/vendor/Nim-csources-v1  a8a5241 ✗                                                       3y156d ⚑  
▶ git diff
diff --git a/c_code/nimbase.h b/c_code/nimbase.h
index eadc34f..8601a1f 100644
--- a/c_code/nimbase.h
+++ b/c_code/nimbase.h
@@ -62,6 +62,7 @@ __clang__
 #  pragma GCC diagnostic ignored "-Wtautological-compare"
 #  pragma GCC diagnostic ignored "-Wswitch-bool"
 #  pragma GCC diagnostic ignored "-Wmacro-redefined"
+#  pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
 #  pragma GCC diagnostic ignored "-Wincompatible-pointer-types-discards-qualifiers"
 #  pragma GCC diagnostic ignored "-Wpointer-bool-conversion"
 #  pragma GCC diagnostic ignored "-Wconstant-conversion"

@caybro caybro added the linux label Jun 25, 2024
@caybro
Copy link
Member

caybro commented Jun 25, 2024

I was able to compile by using the nim-stint commit with the fix and telling gcc to ignore those warnings in nimbus-build-system.

▶ git diff
Submodule vendor/nim-stint 711cda445..9d2b382c5:
  > Fix GCC-14 [-Wincompatible-pointer-types] issue. (#153)
  > Fix pointer deref issue on Macos and Nim >= 2.0 (#152)
  > fix noInit to noinit; use evergreen GitHub Actions image versions (#151)
  > Upgrade github actions to v4 (#149)
  > Make decimal string parser raise ValueError instead of RangeDefect. (#148)
Submodule vendor/nimbus-build-system contains modified content
src/status-im/status-desktop  nim-stint ✗                                                                   18h26m ⚑  
▶ cd vendor/nimbus-build-system 

status-desktop/vendor/nimbus-build-system  cf0c9cf ✔                                                       173d12h ⚑  
▶ git diff
Submodule vendor/Nim-csources-v1 contains modified content

status-desktop/vendor/nimbus-build-system  cf0c9cf ✔                                                       173d12h ⚑  
▶ cd vendor/Nim-csources-v1 

nimbus-build-system/vendor/Nim-csources-v1  a8a5241 ✗                                                       3y156d ⚑  
▶ git diff
diff --git a/c_code/nimbase.h b/c_code/nimbase.h
index eadc34f..8601a1f 100644
--- a/c_code/nimbase.h
+++ b/c_code/nimbase.h
@@ -62,6 +62,7 @@ __clang__
 #  pragma GCC diagnostic ignored "-Wtautological-compare"
 #  pragma GCC diagnostic ignored "-Wswitch-bool"
 #  pragma GCC diagnostic ignored "-Wmacro-redefined"
+#  pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
 #  pragma GCC diagnostic ignored "-Wincompatible-pointer-types-discards-qualifiers"
 #  pragma GCC diagnostic ignored "-Wpointer-bool-conversion"
 #  pragma GCC diagnostic ignored "-Wconstant-conversion"

Great! can you pls open a PR?

@arnetheduck
Copy link
Member

you can fix this locally with --passc:-Wincompatible-pointer-types to nim.cfg - upstream nim has fixed this already but that requires bumping both nim and a lot of libraries.

@arnetheduck
Copy link
Member

here's the PR I already opened for this: #15250

@fryorcraken
Copy link
Collaborator Author

Ah right thanks. I did not initially open a PR as wasn't sure if this should be ignored or fixed upstream.

@jrainville
Copy link
Member

Fixes here #15250

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Archived in project
Development

No branches or pull requests

5 participants