-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
help wantedExtra attention is neededExtra attention is neededqml_modelsQML models to connect to core interfaceQML models to connect to core interface
Description
I'm coding the C++ version of the model that shows wallets and its addresses in the main page, and I realize that:
-
In the walletsModel.go (
type QWallet struct { QWallet
type. -
In the addressesModel.go (
type QAddress struct { QAddress
type.
But despite a wallet has a list of addresses, there's no connection between them but a walletId
property in the QAddress
type, and a QWallet
does not have such property, so this whole design makes no sense to me.
Describe the solution you'd like
- A C++
WalletsModel
that contains a list ofWallet
types that contains anAddressesModel
type containing the list ofAddress
types related to that wallet.
It's there any problem with this implementation?
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededqml_modelsQML models to connect to core interfaceQML models to connect to core interface