You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-app/Wallet.cpp

32 lines
470 B

#include "Wallet.h"
struct WalletImpl
{
// TODO
};
Wallet::Wallet(QObject *parent)
: QObject(parent)
{
}
QString Wallet::getSeed() const
{
return "bound class paint gasp task soul forgot past pleasure physical circle "
" appear shore bathroom glove women crap busy beauty bliss idea give needle burden";
}
QString Wallet::getSeedLanguage() const
{
return "English";
}
void Wallet::setSeedLaguage(const QString &lang)
{
// TODO;
}