mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 23:35:32 +00:00
d47ac2d5f7
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
14 lines
306 B
C++
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
|