-
Notifications
You must be signed in to change notification settings - Fork 11
refactor(key-wallet): wire ManagedCoreKeysAccount into the collection #716
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
Draft
QuantumExplorer
wants to merge
11
commits into
v0.42-dev
Choose a base branch
from
claude/managed-keys-account
base: v0.42-dev
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.
Draft
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7896c7f
feat(key-wallet): add keep_txs_in_memory toggle on ManagedCoreAccount
QuantumExplorer 0282498
refactor(key-wallet): make keep_txs_in_memory a Cargo feature
QuantumExplorer 0e6da68
chore(key-wallet): drop keep_txs_in_memory from default features
QuantumExplorer 8d4cfa7
fix(key-wallet-manager): require keep_txs_in_memory; cargo fmt
QuantumExplorer 2d38624
fix(key-wallet): keep dedup working when keep_txs_in_memory is off
QuantumExplorer b662295
refactor(key-wallet): split ManagedCoreAccount into funds + keys vari…
QuantumExplorer 2f1ea9e
fix(key-wallet): rustfmt + qualify intra-doc link to ManagedCoreFunds…
QuantumExplorer 2b9fbad
docs(key-wallet): fix broken receive-address example in IMPLEMENTATIO…
QuantumExplorer d427400
Merge branch 'claude/adoring-booth-151626' into v0.42-platform-nightly
QuantumExplorer 4431a67
Merge branch 'claude/gracious-dirac-44a53b' into v0.42-platform-nightly
QuantumExplorer 92d7568
refactor(key-wallet): wire ManagedCoreKeysAccount into the collection
QuantumExplorer 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
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.
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.
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.
transaction_countovercounts if a txid appears in multiple accounts.transaction_countsums per-accounttransactions_iter().count()while the conceptually equivalentcount_wallet_transactionsinhelpers.rs(lines 65–70) builds aHashSetto count unique txids, andassert_wallet_syncedalso uses aHashSet. If any transaction is recorded under more than one account,transaction_countwill return a higher value, silently diverging from the other two helpers and potentially causing assertion failures.🔧 Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents