Remove unused capability to configure bitcoind docker version tag

We only use one version of this container
This commit is contained in:
rishflab 2021-03-12 12:50:42 +11:00
parent 7b1d901ea0
commit 9f534996ee
2 changed files with 2 additions and 13 deletions

View file

@ -468,9 +468,7 @@ async fn init_bitcoind_container(
name: String,
network: String,
) -> Result<(Container<'_, Cli, bitcoind::Bitcoind>, Url)> {
let image = bitcoind::Bitcoind::default()
.with_volume(volume)
.with_tag("0.19.1");
let image = bitcoind::Bitcoind::default().with_volume(volume);
let run_args = RunArgs::default().with_name(name).with_network(network);