verify that the user Backup the seed and birthday at creation

This commit is contained in:
DenioD
2020-07-27 12:26:43 +02:00
parent c421ed6821
commit 58ae6355ca
4 changed files with 146 additions and 35 deletions

View File

@@ -17,6 +17,12 @@ class FirstTimeWizard: public QWizard
public:
FirstTimeWizard(bool dangerous, QString server);
QString getSeed();
void setSeed(QString Seed);
QString _seed;
QString getBirthday();
void setBirthday(QString Birthday);
QString _birthday;
protected:
@@ -51,6 +57,7 @@ public:
class NewSeedPage: public QWizardPage {
public:
NewSeedPage(FirstTimeWizard* parent);
protected:
virtual void initializePage();