Skip to content

Commit

Permalink
Print number of offers found by taker
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-belcher committed May 30, 2022
1 parent b0267eb commit 831844b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taker_protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async fn run(rpc: &Client, wallet: &mut Wallet, config: TakerConfig) -> Result<(
let offers_addresses = sync_offerbook(wallet.network)
.await
.expect("unable to sync maker addresses from directory servers");
log::info!("<=== Got Offers");
log::info!("<=== Got Offers ({} offers)", offers_addresses.len());
log::debug!("Offers : {:#?}", offers_addresses);
send_coinswap(rpc, wallet, config, &offers_addresses).await?;
Ok(())
Expand Down

0 comments on commit 831844b

Please sign in to comment.