mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
Revert "UI to alert of respend attempt affecting wallet."
This reverts commit ada5a067c7.
Conflicts:
src/qt/guiconstants.h
src/wallet.h
This commit is contained in:
@@ -24,7 +24,7 @@ TransactionFilterProxy::TransactionFilterProxy(QObject *parent) :
|
||||
typeFilter(ALL_TYPES),
|
||||
minAmount(0),
|
||||
limitRows(-1),
|
||||
showInactive(false)
|
||||
showInactive(true)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ bool TransactionFilterProxy::filterAcceptsRow(int sourceRow, const QModelIndex &
|
||||
qint64 amount = llabs(index.data(TransactionTableModel::AmountRole).toLongLong());
|
||||
int status = index.data(TransactionTableModel::StatusRole).toInt();
|
||||
|
||||
if(!showInactive && status == TransactionStatus::Conflicted && type == TransactionRecord::Other)
|
||||
if(!showInactive && status == TransactionStatus::Conflicted)
|
||||
return false;
|
||||
if(!(TYPE(type) & typeFilter))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user