File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
Utility to run a regtest bitcoind process, useful in integration testing environment.
8
8
9
- When the auto-download feature is selected by activating one of the version feature, such as ` 23_1 `
10
- for bitcoin core 23.1 , starting a regtest node is as simple as that:
9
+ When the auto-download feature is selected by activating one of the version feature, such as ` 25_0 `
10
+ for bitcoin core 25.0 , starting a regtest node is as simple as that:
11
11
12
12
``` rust
13
- // the download feature is enabled whenever a specific version is enabled, for example `23_1 ` or `22_1 `
13
+ // the download feature is enabled whenever a specific version is enabled, for example `25_0 ` or `24_0_1 `
14
14
#[cfg(feature = " download" )]
15
15
{
16
16
use bitcoincore_rpc :: RpcApi ;
@@ -19,7 +19,7 @@ for bitcoin core 23.1, starting a regtest node is as simple as that:
19
19
}
20
20
```
21
21
22
- The build script will automatically download the bitcoin core version 23.1 from [ bitcoin core] ( https://bitcoincore.org ) ,
22
+ The build script will automatically download the bitcoin core version 25.0 from [ bitcoin core] ( https://bitcoincore.org ) ,
23
23
verify the hashes and place it in the build directory for this crate. If you wish to download from an
24
24
alternate location, for example locally for CI, use the ` BITCOIND_DOWNLOAD_ENDPOINT ` env var.
25
25
You can’t perform that action at this time.
0 commit comments