diff --git a/swap/src/config.rs b/swap/src/config.rs index bd56630e..154a82cf 100644 --- a/swap/src/config.rs +++ b/swap/src/config.rs @@ -90,7 +90,7 @@ mod mainnet { mod testnet { use super::*; - pub static BOB_TIME_TO_ACT: Lazy = Lazy::new(|| Duration::from_secs(5 * 60)); + pub static BOB_TIME_TO_ACT: Lazy = Lazy::new(|| Duration::from_secs(60 * 60)); // This does not reflect recommended values for mainnet! pub static BITCOIN_FINALITY_CONFIRMATIONS: u32 = 1; diff --git a/swap/src/main.rs b/swap/src/main.rs index 74db62e3..81702042 100644 --- a/swap/src/main.rs +++ b/swap/src/main.rs @@ -38,7 +38,7 @@ extern crate prettytable; #[tokio::main] async fn main() -> Result<()> { - init_tracing(LevelFilter::Info).expect("initialize tracing"); + init_tracing(LevelFilter::Trace).expect("initialize tracing"); let opt = Options::from_args();