work in review comments

This commit is contained in:
Daniel Karzel 2021-02-04 10:43:02 +11:00
parent c930ad84a4
commit 86290649e7
2 changed files with 8 additions and 7 deletions

View file

@ -29,7 +29,7 @@ use protocol::{alice, bob, bob::Builder, SwapAmounts};
use std::{path::PathBuf, sync::Arc};
use structopt::StructOpt;
use trace::init_tracing;
use tracing::info;
use tracing::{error, info, warn};
use uuid::Uuid;
pub mod bitcoin;
@ -247,11 +247,12 @@ async fn main() -> Result<()> {
Ok((txid, _)) => {
info!("Cancel transaction successfully published with id {}", txid)
}
Err(CancelError::CancelTimelockNotExpiredYet) => {
info!("The Cancel Transaction cannot be published yet, because the timelock has not expired. Please try again later.")
}
Err(CancelError::CancelTimelockNotExpiredYet) => error!(
"The Cancel Transaction cannot be published yet, \
because the timelock has not expired. Please try again later."
),
Err(CancelError::CancelTxAlreadyPublished) => {
info!("The Cancel Transaction has already been published.")
warn!("The Cancel Transaction has already been published.")
}
}
}