mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
b33d1f5ee5
The wallet now uses the mempool fee estimator with a new command-line option: -txconfirmtarget (default: 1) instead of using hard-coded fees or priorities. A new bitcoind that hasn't seen enough transactions to estimate will fall back to the old hard-coded minimum priority or transaction fee. -paytxfee option overrides -txconfirmtarget. Relaying and mining code isn't changed. For Qt, the coin control dialog now uses priority estimates to label transaction priority (instead of hard-coded constants); unspent outputs were consistently labeled with a much higher priority than is justified by the free transactions actually being accepted into blocks. I did not implement any GUI for setting -txconfirmtarget; I would suggest getting rid of the "Pay transaction fee" GUI and replace it with either "target number of confirmations" or maybe a "faster confirmation <--> lower fee" slider or select box.
124 lines
3.1 KiB
C++
124 lines
3.1 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef COINCONTROLDIALOG_H
|
|
#define COINCONTROLDIALOG_H
|
|
|
|
#include <QAbstractButton>
|
|
#include <QAction>
|
|
#include <QDialog>
|
|
#include <QList>
|
|
#include <QMenu>
|
|
#include <QPoint>
|
|
#include <QString>
|
|
#include <QTreeWidgetItem>
|
|
|
|
namespace Ui {
|
|
class CoinControlDialog;
|
|
}
|
|
class WalletModel;
|
|
class CCoinControl;
|
|
class CTxMemPool;
|
|
|
|
class CoinControlDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CoinControlDialog(QWidget *parent = 0);
|
|
~CoinControlDialog();
|
|
|
|
void setModel(WalletModel *model);
|
|
|
|
// static because also called from sendcoinsdialog
|
|
static void updateLabels(WalletModel*, QDialog*);
|
|
static QString getPriorityLabel(const CTxMemPool& pool, double);
|
|
|
|
static QList<qint64> payAmounts;
|
|
static CCoinControl *coinControl;
|
|
|
|
private:
|
|
Ui::CoinControlDialog *ui;
|
|
WalletModel *model;
|
|
int sortColumn;
|
|
Qt::SortOrder sortOrder;
|
|
|
|
QMenu *contextMenu;
|
|
QTreeWidgetItem *contextMenuItem;
|
|
QAction *copyTransactionHashAction;
|
|
QAction *lockAction;
|
|
QAction *unlockAction;
|
|
|
|
QString strPad(QString, int, QString);
|
|
void sortView(int, Qt::SortOrder);
|
|
void updateView();
|
|
|
|
enum
|
|
{
|
|
COLUMN_CHECKBOX,
|
|
COLUMN_AMOUNT,
|
|
COLUMN_LABEL,
|
|
COLUMN_ADDRESS,
|
|
COLUMN_DATE,
|
|
COLUMN_CONFIRMATIONS,
|
|
COLUMN_PRIORITY,
|
|
COLUMN_TXHASH,
|
|
COLUMN_VOUT_INDEX,
|
|
COLUMN_AMOUNT_INT64,
|
|
COLUMN_PRIORITY_INT64,
|
|
COLUMN_DATE_INT64
|
|
};
|
|
|
|
// some columns have a hidden column containing the value used for sorting
|
|
int getMappedColumn(int column, bool fVisibleColumn = true)
|
|
{
|
|
if (fVisibleColumn)
|
|
{
|
|
if (column == COLUMN_AMOUNT_INT64)
|
|
return COLUMN_AMOUNT;
|
|
else if (column == COLUMN_PRIORITY_INT64)
|
|
return COLUMN_PRIORITY;
|
|
else if (column == COLUMN_DATE_INT64)
|
|
return COLUMN_DATE;
|
|
}
|
|
else
|
|
{
|
|
if (column == COLUMN_AMOUNT)
|
|
return COLUMN_AMOUNT_INT64;
|
|
else if (column == COLUMN_PRIORITY)
|
|
return COLUMN_PRIORITY_INT64;
|
|
else if (column == COLUMN_DATE)
|
|
return COLUMN_DATE_INT64;
|
|
}
|
|
|
|
return column;
|
|
}
|
|
|
|
private slots:
|
|
void showMenu(const QPoint &);
|
|
void copyAmount();
|
|
void copyLabel();
|
|
void copyAddress();
|
|
void copyTransactionHash();
|
|
void lockCoin();
|
|
void unlockCoin();
|
|
void clipboardQuantity();
|
|
void clipboardAmount();
|
|
void clipboardFee();
|
|
void clipboardAfterFee();
|
|
void clipboardBytes();
|
|
void clipboardPriority();
|
|
void clipboardLowOutput();
|
|
void clipboardChange();
|
|
void radioTreeMode(bool);
|
|
void radioListMode(bool);
|
|
void viewItemChanged(QTreeWidgetItem*, int);
|
|
void headerSectionClicked(int);
|
|
void buttonBoxClicked(QAbstractButton*);
|
|
void buttonSelectAllClicked();
|
|
void updateLabelLocked();
|
|
};
|
|
|
|
#endif // COINCONTROLDIALOG_H
|