From 32c16c000a7a5845629c42ead71629216e9e5261 Mon Sep 17 00:00:00 2001 From: Pravdyvy Date: Tue, 9 Jun 2026 17:59:06 +0300 Subject: [PATCH] fix: trying to register types --- src/logos_execution_zone_wallet_module.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/logos_execution_zone_wallet_module.cpp b/src/logos_execution_zone_wallet_module.cpp index 0a2b2bc..d99ec26 100644 --- a/src/logos_execution_zone_wallet_module.cpp +++ b/src/logos_execution_zone_wallet_module.cpp @@ -7,6 +7,13 @@ #include #include +#include + +static const bool s_metaTypesRegistered = []() { + qRegisterMetaType("QJsonArray"); + return true; +}(); + static QString bytesToHex(const uint8_t* data, const size_t length) { const QByteArray bytearray(reinterpret_cast(data), static_cast(length)); return QString::fromLatin1(bytearray.toHex());