We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4274628 commit c9c0eeeCopy full SHA for c9c0eee
src/config/bitcoin.rs
@@ -29,7 +29,7 @@ impl Default for BitcoinConfig {
29
.into_path(),
30
extra_args: Vec::new(),
31
network: Network::Regtest,
32
- docker_image: Some("bitcoin/bitcoin:latest".to_string()),
+ docker_image: Some("bitcoin/bitcoin:27.1".to_string()),
33
env: Vec::new(),
34
idx: 0,
35
}
src/config/docker.rs
@@ -34,7 +34,7 @@ impl From<&BitcoinConfig> for DockerConfig {
image: v
.docker_image
36
.clone()
37
- .unwrap_or_else(|| "bitcoin/bitcoin:latest".to_string()),
+ .unwrap_or_else(|| "bitcoin/bitcoin:27.1".to_string()),
38
cmd: args,
39
log_path: v.data_dir.join("regtest").join("debug.log"),
40
volume: VolumeConfig {
0 commit comments