From 4a086c345dc26c48a97094a4fa658c623c2f1d5f Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Wed, 16 Oct 2024 18:40:27 +0200 Subject: [PATCH] Drop flaky `connect_to_public_esplora` test .. as it regularly makes CI fail and doesn't provide us anything really. --- tests/integration_tests_rust.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/integration_tests_rust.rs b/tests/integration_tests_rust.rs index 7dab40b16..dc5c4b818 100644 --- a/tests/integration_tests_rust.rs +++ b/tests/integration_tests_rust.rs @@ -195,17 +195,6 @@ fn multi_hop_sending() { expect_payment_successful_event!(nodes[0], payment_id, Some(fee_paid_msat)); } -#[test] -fn connect_to_public_testnet_esplora() { - let mut config = random_config(true); - config.network = Network::Testnet; - setup_builder!(builder, config); - builder.set_chain_source_esplora("https://blockstream.info/testnet/api".to_string(), None); - let node = builder.build().unwrap(); - node.start().unwrap(); - node.stop().unwrap(); -} - #[test] fn start_stop_reinit() { let (bitcoind, electrsd) = setup_bitcoind_and_electrsd();