esplora: bump esplora-client to 0.13.0 - #2252
Closed
Juwon-Ogunseye wants to merge 1 commit into
Closed
Conversation
Fixes RUSTSEC-2026-0104 (reachable panic in rustls-webpki CRL parsing) by pulling in esplora-client's migration from minreq to bitreq, which pins a patched rustls-webpki version. Adapts to esplora-client 0.13.0 API changes: - Tx renamed to EsploraTx - scripthash_txs renamed to get_scripthash_txs - TxOut.value is now Amount, not u64 (drop redundant Amount::from_sat wrap and unused Amount import)
Juwon-Ogunseye
requested review from
luisschwab and
oleonardolima
as code owners
August 3, 2026 04:34
Member
|
Duplicate of #2189 |
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.
Description
Closes #2214
esplora-client 0.12.3 pulled in
minreq, which depends on an unpatchedrustls-webpki(RUSTSEC-2026-0104: reachable panic in CRL parsing).esplora-client 0.13.0 already migrated to
bitrequpstream, which pinsa patched
rustls-webpki(^0.103.13), so this is a version bump ratherthan a from-scratch fix.
Bumping to 0.13.0 required adapting to its API changes:
Txrenamed toEsploraTxscripthash_txsrenamed toget_scripthash_txsNotes to the reviewers
While fixing the build against 0.13.0, I also hit an unrelated compile
error:
TxOut.valueis now typed asAmountrather thanu64in therust-bitcoinversion this pulls in, so the existingAmount::from_sat(prev_txout.value)call was redundantly re-wrappingan already-
Amountvalue. I dropped the wrap and the now-unusedAmountimport. Happy to split this into a separate commit/PR ifpreferred, but it was a required fix to get this compiling.
Changelog notice
Bump
esplora-clientdependency to 0.13.0, fixing RUSTSEC-2026-0104.Checklists
All Submissions:
Bugfixes: