forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat(qt): identify masternode transactions in history #7595
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
Open
PastaPastaPasta
wants to merge
12
commits into
dashpay:develop
Choose a base branch
from
PastaPastaPasta:feat/qt-provider-transaction-history
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
00855f3
feat(qt): identify masternode transactions in history
PastaPastaPasta e1125ab
docs: add release notes for masternode history
PastaPastaPasta 1c49e60
fix(qt): match transaction record argument comment
PastaPastaPasta a3690ef
test(lint): include provider transaction tests
PastaPastaPasta 1147adf
fix(qt): preserve transaction filter settings
PastaPastaPasta 7abf043
fix(qt): preserve visible transaction filter
PastaPastaPasta f9e7509
fix(qt): summarize provider transaction details
PastaPastaPasta 451cb22
refactor(qt): drop transaction filter persistence from provider PR
PastaPastaPasta e0bbbdc
test(qt): match provider HTML negative assertions to rendered labels
PastaPastaPasta adc9215
test(qt): assert provider detail labels without HTML markup
PastaPastaPasta bcd3217
docs: clarify masternode history release note wording
PastaPastaPasta 7636c08
test(qt): assert provider summary fields before debug section
PastaPastaPasta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| GUI changes | ||
| ----------- | ||
|
|
||
| - Dash-Qt now labels masternode registration and update transactions in the | ||
| transaction history as **Masternode Registration** and **Masternode Update** | ||
| instead of generic "Payment to yourself" rows. A new **Masternode** filter | ||
| shows only these operations. The amount shown is the transaction's net effect | ||
| on your wallet (for example, the network fee on a self-funded registration). | ||
| (#7595) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| // Copyright (c) 2026 The Dash Core developers | ||
| // Distributed under the MIT software license, see the accompanying | ||
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
|
||
| #ifndef BITCOIN_QT_TEST_PROVIDERTRANSACTIONTESTS_H | ||
| #define BITCOIN_QT_TEST_PROVIDERTRANSACTIONTESTS_H | ||
|
|
||
| #include <QObject> | ||
|
|
||
| namespace interfaces { | ||
| class Node; | ||
| } // namespace interfaces | ||
|
|
||
| class ProviderTransactionTests : public QObject | ||
| { | ||
| Q_OBJECT | ||
|
|
||
| public: | ||
| explicit ProviderTransactionTests(interfaces::Node& node) : | ||
| m_node(node) | ||
| { | ||
| } | ||
|
|
||
| private Q_SLOTS: | ||
| void transactionTypeSettingCompatibility_data(); | ||
| void transactionTypeSettingCompatibility(); | ||
| void providerTransactionHistory(); | ||
|
|
||
| private: | ||
| interfaces::Node& m_node; | ||
| }; | ||
|
|
||
| #endif // BITCOIN_QT_TEST_PROVIDERTRANSACTIONTESTS_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.