test(abstract-utxo): add integration tests for custom change wallet key#8184
Merged
OttoAllmendinger merged 3 commits intomasterfrom Feb 20, 2026
Merged
Conversation
f372087 to
79399e4
Compare
Replace async key signing with synchronous wasm-utxo message signing to improve test performance and simplify test setup. BTC-2650 Co-authored-by: llm-git <llm-git@ttll.de>
Replace SDK-dependent test with pure utxo-lib implementation using PSBT construction and explanation. Add signature verification tests using wasm-utxo message signing. Support both utxolib and wasm-utxo backends. BTC-2650 Co-authored-by: llm-git <llm-git@ttll.de>
Add parseTransaction tests to verify custom change wallet key fetching, signature verification, and proper handling of transactions without customChangeWalletId. Tests cover both valid and invalid signatures. BTC-2650 Co-authored-by: llm-git <llm-git@ttll.de>
79399e4 to
afce442
Compare
davidkaplanbitgo
approved these changes
Feb 20, 2026
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.
Add integration tests for parseTransaction to verify custom change
wallet key fetching and signature verification:
Replace SDK-dependent tests with pure utxo-lib implementation using
PSBT construction and explanation. Use synchronous wasm-utxo message
signing to improve test performance and simplify test setup.
Issue: BTC-2650