-
Notifications
You must be signed in to change notification settings - Fork 38.7k
[QT] Show more descriptive label for pay to yourself entries #9985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
10e5e17 to
bbfdb8d
Compare
|
Concept ACK |
| parts.append(TransactionRecord(hash, nTime, TransactionRecord::SendToSelf, "", | ||
| std::string address; | ||
| CTxDestination destAddress; | ||
| if (wtx.tx->vout.size() >= 1 && ExtractDestination(wtx.tx->vout[0].scriptPubKey, destAddress)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This list only the first to-yourself-output. But I think this is okay.
|
For 'send to yourself' transactions, maybe the row-background shading should be tinted a different colour. So it is more visually apparent what transactions leave the wallet? |
|
I think it may be a good idea to just remove send-to-self as a thing. In some cases (eg, CoinJoins), it is indistinguishable from send-to-someone-else + receive-from-someone-else in the same transaction... |
|
@luke-jr an alternative would be to not consider watch-only as "self". |
|
CoinJoins aren't necessarily watch-only. |
|
I think #10007 is superior alternative. |
This show a more descriptive label for Pay To Yourself transaction entries in bitcoin QT. Showing the label of the first Output.
Before:

After:

Pay to yourself is common when using Bitcoin Core for tracking coins going from and to Watch-Only addresses. For example, in the case of TumblerBit, it will make it easier to see when a coins is transitioning throught different states: Wallet =>Alice Escrow => Alice Offer => Alice Offer Redeem.