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());