Remove turnstile

This commit is contained in:
Aditya Kulkarni
2019-10-16 13:26:01 -07:00
parent a494d3d4e0
commit 57bb19b941
9 changed files with 0 additions and 491 deletions

View File

@@ -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();