Remove debug warnings from screen

This commit is contained in:
Aditya Kulkarni
2018-10-29 09:48:23 -07:00
parent e5d2ae7d9b
commit 17eb7be81c
3 changed files with 24 additions and 22 deletions

View File

@@ -4,8 +4,10 @@
#include "precompiled.h"
class RPC;
class MainWindow;
struct Tx;
struct TurnstileMigrationItem {
QString fromAddr;
QString intTAddr;
@@ -33,7 +35,7 @@ struct ProgressReport {
class Turnstile
{
public:
Turnstile(RPC* _rpc, QWidget* mainwindow);
Turnstile(RPC* _rpc, MainWindow* mainwindow);
~Turnstile();
void planMigration(QString zaddr, QString destAddr, int splits, int numBlocks);
@@ -59,7 +61,7 @@ private:
QList<TurnstileMigrationItem>::Iterator getNextStep(QList<TurnstileMigrationItem>& plan);
RPC* rpc;
QWidget* mainwindow;
MainWindow* mainwindow;
};
#endif