Moved the Electrum client back down

This commit is contained in:
Dave Hrycyszyn
2024-07-24 16:52:35 +01:00
parent e2c963983c
commit b78aadabff
5 changed files with 35 additions and 32 deletions

View File

@@ -50,6 +50,11 @@ pub(crate) async fn simple_transfer() -> Result<(), anyhow::Error> {
}
pub(crate) async fn htlc() -> anyhow::Result<()> {
println!("Not implemented yet.");
// dave will be our sender
let mut dave = clients::esplora::create_wallet("dave", Network::Signet)?;
// sammy will be our liquidity router
let mut sammy = clients::esplora::create_wallet("sammy", Network::Signet)?;
Ok(())
}