Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Changed
- perf: Mine reveal prefix relying on `sign_schnorr` internal randomness.([#3192](https://github.com/chainwayxyz/citrea/pull/3192))
- fix: use deterministic boundless patch and unpin ubuntu ci.([#3216](https://github.com/chainwayxyz/citrea/pull/3216))
- fix(bitcoin-da): return correct error variant on mempool.space HTTP request failure. ([#3226](https://github.com/chainwayxyz/citrea/pull/3226))

## [v2.3.1](2026-03-31)

Expand Down
2 changes: 1 addition & 1 deletion crates/bitcoin-da/src/fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ pub(crate) async fn get_fee_rate_from_mempool_space(mempool_space_url: &str) ->
.await
.map_err(|e| {
trace!("Failed to fetch from {}: {:?}", url, e);
FeeServiceError::MempoolSpaceParseError
FeeServiceError::MempoolSpaceRequestError(e)
})?;

let json = response.json::<serde_json::Value>().await.map_err(|e| {
Expand Down