You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/dialog/verifyproofdialog.h

36 lines
771 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef WOWLET_VERIFYPROOFDIALOG_H
#define WOWLET_VERIFYPROOFDIALOG_H
#include <QDialog>
#include "libwalletqt/Wallet.h"
namespace Ui {
class VerifyProofDialog;
}
class VerifyProofDialog : public QDialog
{
Q_OBJECT
public:
explicit VerifyProofDialog(Wallet *wallet, QWidget *parent = nullptr);
~VerifyProofDialog() override;
private slots:
void checkProof();
private:
void checkTxProof(const QString &txId, const QString &address, const QString &message, const QString &signature);
void checkSpendProof();
void checkOutProof();
void checkInProof();
Ui::VerifyProofDialog *ui;
Wallet *m_wallet;
};
#endif //WOWLET_VERIFYPROOFDIALOG_H