Khushboo Mehta d47ac2d5f7 feat(@desktop/wallet): cpp: Added apis for
1. Generate new API
2. Import accounts by PK
3. Import account by seed phrase
4. Add watch only address
5. delete account
6. current account
2022-02-24 10:53:18 +01:00

14 lines
306 B
C++

#include <QDebug>
#include "controller.h"
namespace Modules::Main::Wallet
{
Controller::Controller(std::shared_ptr<Wallets::ServiceInterface> walletService, QObject* parent)
: QObject(parent),
m_walletService(walletService)
{ }
void Controller::init() { }
} // namespace Modules::Main::Wallet