Skip to content

Commit

Permalink
Use proper columns in dataChanged call in updateAddressBook
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock committed Oct 19, 2019
1 parent 275725c commit 7aa074f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/transactiontablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class TransactionTablePriv
for (auto& rec : cachedWallet) {
if (rec.strAddress == address2) {
rec.status.needsUpdate = true;
Q_EMIT parent->dataChanged(parent->index(index, TransactionTableModel::Status), parent->index(index, TransactionTableModel::Status));
Q_EMIT parent->dataChanged(parent->index(index, TransactionTableModel::ToAddress), parent->index(index, TransactionTableModel::ToAddress));
}
index++;
}
Expand Down

0 comments on commit 7aa074f

Please sign in to comment.