mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
allow for filtering addresses and labels by searching for the typed string anywhere, not just at the beginning (#641)
This commit is contained in:
@@ -35,7 +35,7 @@ bool TransactionFilterProxy::filterAcceptsRow(int sourceRow, const QModelIndex &
|
||||
return false;
|
||||
if(datetime < dateFrom || datetime > dateTo)
|
||||
return false;
|
||||
if(!address.startsWith(addrPrefix) && !label.startsWith(addrPrefix))
|
||||
if (!address.contains(addrPrefix, Qt::CaseInsensitive) && !label.contains(addrPrefix, Qt::CaseInsensitive))
|
||||
return false;
|
||||
if(amount < minAmount)
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user