Skip to content

Commit a41db82

Browse files
committed
Merge #1846: Fix CI
6be6d06 docs(chain): Fix docs for `KeychainTxOutIndex` (志宇) 5ba4d68 ci: Pin `native-tls` to `0.2.13` (志宇) Pull request description: ### Description This PR makes CI happy again. * CI complained about docs here. https://github.com/bitcoindevkit/bdk/actions/runs/13420654916/job/37492201157 * CI complained about MSRV not being satisfied. https://github.com/bitcoindevkit/bdk/actions/runs/13420654913/job/37492254119 ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: ValuedMammal: ACK 6be6d06 Tree-SHA512: 87029e01c0e988863603353002c674c40cf1ebd7fa94e7430141ad49cbba770c6b7219ceb8eb001552319c8f352100b2461c8c0c1a6e977d58b8fd8e0c90d0b8
2 parents 6e160d4 + 6be6d06 commit a41db82

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
if: matrix.rust.version == '1.75.0'
4949
run: |
5050
cargo update -p home --precise "0.5.9"
51+
cargo update -p native-tls --precise "0.2.13"
5152
- name: Pin dependencies for MSRV
5253
if: matrix.rust.version == '1.63.0'
5354
run: ./ci/pin-msrv.sh

ci/pin-msrv.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ cargo update -p indexmap --precise "2.5.0"
2121
cargo update -p security-framework-sys --precise "2.11.1"
2222
cargo update -p csv --precise "1.3.0"
2323
cargo update -p unicode-width --precise "0.1.13"
24+
cargo update -p native-tls --precise "0.2.13"

crates/chain/src/indexer/keychain_txout.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ pub const DEFAULT_LOOKAHEAD: u32 = 25;
105105
/// ```
106106
///
107107
/// [`Ord`]: core::cmp::Ord
108-
/// [`SpkTxOutIndex`]: crate::spk_txout_index::SpkTxOutIndex
108+
/// [`SpkTxOutIndex`]: crate::spk_txout::SpkTxOutIndex
109109
/// [`Descriptor`]: crate::miniscript::Descriptor
110110
/// [`reveal_to_target`]: Self::reveal_to_target
111111
/// [`reveal_next_spk`]: Self::reveal_next_spk

0 commit comments

Comments
 (0)