X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=lightning-transaction-sync%2Ftests%2Fintegration_tests.rs;fp=lightning-transaction-sync%2Ftests%2Fintegration_tests.rs;h=617b1213e89d368903b1903f151176bbc5b9e50e;hb=0d646b7c156aa4978593ee899ca3a354e290997f;hp=151f986553f86ec10d44fd6f196655aa711c8e1c;hpb=050f5a90297678f2cad36feee9a1db2367e35594;p=rust-lightning diff --git a/lightning-transaction-sync/tests/integration_tests.rs b/lightning-transaction-sync/tests/integration_tests.rs index 151f9865..617b1213 100644 --- a/lightning-transaction-sync/tests/integration_tests.rs +++ b/lightning-transaction-sync/tests/integration_tests.rs @@ -321,20 +321,3 @@ async fn test_esplora_syncs() { _ => panic!("Unexpected event"), } } - -#[tokio::test] -#[cfg(any(feature = "esplora-async-https", feature = "esplora-blocking"))] -async fn test_esplora_connects_to_public_server() { - let mut logger = TestLogger {}; - let esplora_url = "https://blockstream.info/api".to_string(); - let tx_sync = EsploraSyncClient::new(esplora_url, &mut logger); - let confirmable = TestConfirmable::new(); - - // Check we connect and pick up on new best blocks - assert_eq!(confirmable.best_block.lock().unwrap().1, 0); - #[cfg(feature = "esplora-async-https")] - tx_sync.sync(vec![&confirmable]).await.unwrap(); - #[cfg(feature = "esplora-blocking")] - tx_sync.sync(vec![&confirmable]).unwrap(); - assert_ne!(confirmable.best_block.lock().unwrap().1, 0); -}