Remove container and test blockchains downloading backends executables

This commit is contained in:
Riccardo Casatta
2021-06-18 14:28:40 +02:00
parent 696647b893
commit f4ecfa0d49
4 changed files with 36 additions and 22 deletions

View File

@@ -419,6 +419,6 @@ impl_error!(bitcoin::hashes::hex::Error, Hex, EsploraError);
#[cfg(feature = "test-blockchains")]
crate::bdk_blockchain_tests! {
fn test_instance(test_client: &TestClient) -> EsploraBlockchain {
EsploraBlockchain::new(test_client.electrsd.esplora_url.as_ref().unwrap(), None)
EsploraBlockchain::new(&format!("http://{}",test_client.electrsd.esplora_url.as_ref().unwrap()), None)
}
}