We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2679bb8 commit f27bd96Copy full SHA for f27bd96
src/qt/bitcoin.cpp
@@ -448,6 +448,9 @@ int GuiMain(int argc, char* argv[])
448
449
// Register meta types used for QMetaObject::invokeMethod
450
qRegisterMetaType< bool* >();
451
+#ifdef ENABLE_WALLET
452
+ qRegisterMetaType<WalletModel*>();
453
+#endif
454
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)
455
// IMPORTANT if it is no longer a typedef use the normal variant above
456
qRegisterMetaType< CAmount >("CAmount");
0 commit comments