We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71fbdb7 commit 2d182f7Copy full SHA for 2d182f7
src/qt/transactionrecord.cpp
@@ -66,11 +66,13 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const interface
66
{
67
const CTxOut& txout = wtx.tx->vout[i];
68
69
- if (wtx.txout_is_change[i]) {
70
- continue;
71
- }
72
-
73
if (fAllFromMe) {
+ // Change is only really possible if we're the sender
+ // Otherwise, someone just sent bitcoins to a change address, which should be shown
+ if (wtx.txout_is_change[i]) {
+ continue;
74
+ }
75
+
76
//
77
// Debit
78
0 commit comments