Small changes to make debugging easier and tests

pull/123/head
Franck Royer 4 years ago
parent 9d8f8b0a1f
commit 95ecb02e7a
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

@ -90,7 +90,7 @@ mod mainnet {
mod testnet {
use super::*;
pub static BOB_TIME_TO_ACT: Lazy<Duration> = Lazy::new(|| Duration::from_secs(5 * 60));
pub static BOB_TIME_TO_ACT: Lazy<Duration> = Lazy::new(|| Duration::from_secs(60 * 60));
// This does not reflect recommended values for mainnet!
pub static BITCOIN_FINALITY_CONFIRMATIONS: u32 = 1;

@ -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();

Loading…
Cancel
Save