mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-09 20:39:58 +00:00
60 lines
2 KiB
C++
60 lines
2 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#include "TxBroadcastDialog.h"
|
|
#include "ui_TxBroadcastDialog.h"
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include "utils/NetworkManager.h"
|
|
|
|
TxBroadcastDialog::TxBroadcastDialog(QWidget *parent, QSharedPointer<AppContext> ctx, const QString &transactionHex)
|
|
: WindowModalDialog(parent)
|
|
, ui(new Ui::TxBroadcastDialog)
|
|
, m_ctx(std::move(ctx))
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
auto node = m_ctx->nodes->connection();
|
|
m_rpc = new DaemonRpc(this, getNetworkTor(), node.toAddress());
|
|
|
|
connect(ui->btn_Broadcast, &QPushButton::clicked, this, &TxBroadcastDialog::broadcastTx);
|
|
connect(ui->btn_Close, &QPushButton::clicked, this, &TxBroadcastDialog::reject);
|
|
|
|
connect(m_rpc, &DaemonRpc::ApiResponse, this, &TxBroadcastDialog::onApiResponse);
|
|
|
|
if (!transactionHex.isEmpty()) {
|
|
ui->transaction->setPlainText(transactionHex);
|
|
}
|
|
|
|
this->adjustSize();
|
|
}
|
|
|
|
void TxBroadcastDialog::broadcastTx() {
|
|
QString tx = ui->transaction->toPlainText();
|
|
|
|
FeatherNode node = ui->radio_useCustom->isChecked() ? FeatherNode(ui->customNode->text()) : m_ctx->nodes->connection();
|
|
|
|
if (node.isLocal()) {
|
|
m_rpc->setNetwork(getNetworkClearnet());
|
|
} else {
|
|
m_rpc->setNetwork(getNetworkTor());
|
|
}
|
|
|
|
m_rpc->setDaemonAddress(node.toURL());
|
|
m_rpc->sendRawTransaction(tx);
|
|
}
|
|
|
|
void TxBroadcastDialog::onApiResponse(const DaemonRpc::DaemonResponse &resp) {
|
|
if (!resp.ok) {
|
|
QMessageBox::warning(this, "Transaction broadcast", resp.status);
|
|
return;
|
|
}
|
|
|
|
if (resp.endpoint == DaemonRpc::Endpoint::SEND_RAW_TRANSACTION) {
|
|
QMessageBox::information(this, "Transaction broadcast", "Transaction submitted successfully.\n\n"
|
|
"If the transaction belongs to this wallet it may take several minutes before it shows up in the history tab.");
|
|
}
|
|
}
|
|
|
|
TxBroadcastDialog::~TxBroadcastDialog() = default;
|