This matches our naming scheme better and fits better on crates.io.
Also drop the version to 0.0.1 to match our versioning scheme
better.
[package]
-name = "background-processor"
-version = "0.1.0"
+name = "lightning-background-processor"
+version = "0.0.1"
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
edition = "2018"
loop {
let log_entries = nodes[0].logger.lines.lock().unwrap();
let desired_log = "Calling manager's timer_chan_freshness_every_min".to_string();
- if log_entries.get(&("background_processor".to_string(), desired_log)).is_some() {
+ if log_entries.get(&("lightning_background_processor".to_string(), desired_log)).is_some() {
break
}
}