File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 5
5
# 0.7.0 2025-04-04
6
6
7
7
- Retry initial client connections [ #111 ] ( https://github.com/rust-bitcoin/corepc/pull/111 )
8
- -
9
8
10
9
# 0.6.1 - 2025-03-11
11
10
Original file line number Diff line number Diff line change 2
2
3
3
Utility to run a regtest bitcoind process, useful in integration testing environment.
4
4
5
- When the auto-download feature is selected by activating one of the version feature, such as ` 25_1 `
6
- for bitcoin core 25.1, starting a regtest node is as simple as that:
5
+ When the auto-download feature is enabled, starting a regtest node is as simple as that:
7
6
8
7
``` rust
9
- // the download feature is enabled whenever a specific version is enabled , for example `25_1` or `24_0_1`
8
+ // the download feature must be enabled with a specific version, for example `25_1` or `24_0_1`
10
9
#[cfg(feature = " download" )]
11
10
{
12
11
let node = corepc_node :: Node :: from_downloaded (). unwrap ();
Original file line number Diff line number Diff line change @@ -562,7 +562,7 @@ pub fn downloaded_exe_path() -> anyhow::Result<String> {
562
562
/// Returns the daemon `bitcoind` executable with the following precedence:
563
563
///
564
564
/// 1) If it's specified in the `BITCOIND_EXE` env var
565
- /// 2) If there is no env var but an auto-download feature such as `23_1` is enabled, returns the
565
+ /// 2) If there is no env var but the auto-download feature is enabled, returns the
566
566
/// path of the downloaded executabled
567
567
/// 3) If neither of the precedent are available, the `bitcoind` executable is searched in the `PATH`
568
568
pub fn exe_path ( ) -> anyhow:: Result < String > {
You can’t perform that action at this time.
0 commit comments