Skip to content

Commit e235cb1

Browse files
hebastoRandyMcMillan
authored andcommittedMay 27, 2023
qt: Register wallet::AddressPurpose type
1 parent 355f084 commit e235cb1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎src/qt/bitcoin.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#include <qt/paymentserver.h>
4141
#include <qt/walletcontroller.h>
4242
#include <qt/walletmodel.h>
43+
#include <wallet/types.h>
4344
#endif // ENABLE_WALLET
4445

4546
#include <boost/signals2/connection.hpp>
@@ -79,6 +80,9 @@ Q_DECLARE_METATYPE(CAmount)
7980
Q_DECLARE_METATYPE(SynchronizationState)
8081
Q_DECLARE_METATYPE(SyncType)
8182
Q_DECLARE_METATYPE(uint256)
83+
#ifdef ENABLE_WALLET
84+
Q_DECLARE_METATYPE(wallet::AddressPurpose)
85+
#endif // ENABLE_WALLET
8286

8387
static void RegisterMetaTypes()
8488
{
@@ -88,7 +92,8 @@ static void RegisterMetaTypes()
8892
qRegisterMetaType<SyncType>();
8993
#ifdef ENABLE_WALLET
9094
qRegisterMetaType<WalletModel*>();
91-
#endif
95+
qRegisterMetaType<wallet::AddressPurpose>();
96+
#endif // ENABLE_WALLET
9297
// Register typedefs (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType)
9398
// IMPORTANT: if CAmount is no longer a typedef use the normal variant above (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1)
9499
qRegisterMetaType<CAmount>("CAmount");

0 commit comments

Comments
 (0)