Feature/ltc support#58
Merged
Merged
Conversation
- Add LTC as a new supported coin with full BTC-style wallet integration - Disable seed-based wallet creation for LTC (not supported until LTC Core 0.24.x) - Add CreateBtcSimpleWallet flow for BTC-style coins without descriptor wallet support - Add wallet backup location and restore instructions to wallet creation dialog - Add UseDescriptorWallet and SupportTaproot flags to WalletServiceBaseBTC for per-coin descriptor control - Add GetIsEncrypted via getwalletinfo to properly skip password prompt for unencrypted wallets - Fix GetPrivateKeys to use UseDescriptorWallet flag instead of error code fallback detection - Sort transfers by timestamp instead of height so pending transactions appear at top - Fix typo in Settings view label
- Move all wallet API calls from root URL to wallet-specific endpoints - Add EstimateFeeForLegacyWallet and EstimateFeeViaSmartFee fallbacks - Add UseDescriptorWallet guard on PSBT path in Transfer and EstimateFee - Add ImportPubKeyForAddress on wallet creation for all address formats - Fix RescanBlockchain to start from pruneheight on pruned nodes - Fix listsinceblock blockhash handling and NewestTransactionBlockHash tracking - Add GetRpcErrorMessage helper for cleaner wallet operation error dialogs
- Detect MWEB receives via listunspent + gettransaction (invisible to listsinceblock). - Filter MWEB change entries using fee sign and sibling-based txid matching. Deduplicate across ticks - listsinceblock returns the same kernel with different txids on later ticks. - Fix UIManager key mismatch that caused cache entries to be re-added every poll.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
listunspent+gettransaction, filter change entries, deduplicate across-tick kernel ID splitsCreateBtcSimpleWalletflow for coins without descriptor wallet support; disable seed-based creation for LTC (requires Core 0.24.x+)GetIsEncryptedviagetwalletinfoto skip password prompt on unencrypted walletslistsinceblockblockhash tracking,RescanBlockchainprune height handling, andGetPrivateKeysdescriptor detectionTest plan