mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 04:44:52 +00:00
5a08bc353e
- connecting to nodes is much faster and more reliable now - reduced the amount of spaghetti in libwalletqt and greatly simplified the logic in nodes.cpp - Settings -> Node dialog should feel slightly more responsive - during synchronization the status bar will now display the amount of data downloaded - fixed some edge cases that could cause unreasonably long hangs - Help -> Debug Info screen now auto-updates every 5 seconds - Don't use SSL over Tor
34 lines
685 B
C++
34 lines
685 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020, The Monero Project.
|
|
|
|
#ifndef FEATHER_DEBUGINFODIALOG_H
|
|
#define FEATHER_DEBUGINFODIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "appcontext.h"
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class DebugInfoDialog;
|
|
}
|
|
|
|
class DebugInfoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DebugInfoDialog(AppContext *ctx, QWidget *parent = nullptr);
|
|
~DebugInfoDialog() override;
|
|
|
|
private:
|
|
QString statusToString(Wallet::ConnectionStatus status);
|
|
void copyToClipboad();
|
|
void updateInfo();
|
|
|
|
QTimer m_updateTimer;
|
|
AppContext *m_ctx;
|
|
|
|
Ui::DebugInfoDialog *ui;
|
|
};
|
|
|
|
#endif //FEATHER_DEBUGINFODIALOG_H
|