Skip to content

Commit

Permalink
qt: Show "Staking address" for all staking addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Feb 3, 2024
1 parent 841688e commit 6ce3219
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/qt/transactionrecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const interface
{
// Staked
sub.type = TransactionRecord::Staked;

// Blackcoin: Show only "staking address" because P2PK address is empty since Core 26.0
// For the reasoning behind this change see PR https://github.com/bitcoin/bitcoin/pull/28246
sub.address = "Staking address";
}

parts.append(sub);
Expand Down

0 comments on commit 6ce3219

Please sign in to comment.