Remove turnstile
This commit is contained in:
@@ -17,7 +17,6 @@
|
||||
#include "balancestablemodel.h"
|
||||
#include "settings.h"
|
||||
#include "version.h"
|
||||
#include "turnstile.h"
|
||||
#include "senttxstore.h"
|
||||
#include "connection.h"
|
||||
#include "requestdialog.h"
|
||||
@@ -141,7 +140,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
setupTransactionsTab();
|
||||
setupReceiveTab();
|
||||
setupBalancesTab();
|
||||
setupTurnstileDialog();
|
||||
setupZcashdTab();
|
||||
|
||||
rpc = new Controller(this);
|
||||
@@ -223,21 +221,6 @@ void MainWindow::closeEvent(QCloseEvent* event) {
|
||||
QMainWindow::closeEvent(event);
|
||||
}
|
||||
|
||||
|
||||
void MainWindow::setupTurnstileDialog() {
|
||||
// Turnstile migration
|
||||
QObject::connect(ui->actionTurnstile_Migration, &QAction::triggered, [=] () {
|
||||
// If the underlying zcashd has support for the migration and there is no existing migration
|
||||
// in progress, use that.
|
||||
if (rpc->getMigrationStatus()->available) {
|
||||
Turnstile::showZcashdMigration(this);
|
||||
} else {
|
||||
// Else, do nothing
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::setupStatusBar() {
|
||||
// Status Bar
|
||||
loadingLabel = new QLabel();
|
||||
|
||||
Reference in New Issue
Block a user