Skip to content

Commit

Permalink
f Drop preset 'http' scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Nov 28, 2022
1 parent 5e27d3c commit 43a3bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning-transaction-sync/src/esplora.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ where
let last_sync_hash = Mutex::new(None);
#[cfg(feature = "async-interface")]
let last_sync_hash = tokio::sync::Mutex::new(None);
let builder = Builder::new(&format!("http://{}", server_url));
let builder = Builder::new(&server_url);
#[cfg(not(feature = "async-interface"))]
let client = builder.build_blocking().unwrap();
#[cfg(feature = "async-interface")]
Expand Down

0 comments on commit 43a3bb9

Please sign in to comment.