We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
background-processor
lightning-background-processor
1 parent c896461 commit 00550baCopy full SHA for 00550ba
background-processor/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
-name = "background-processor"
3
-version = "0.1.0"
+name = "lightning-background-processor"
+version = "0.0.1"
4
authors = ["Valentine Wallace <[email protected]>"]
5
edition = "2018"
6
background-processor/src/lib.rs
@@ -268,7 +268,7 @@ mod tests {
268
loop {
269
let log_entries = nodes[0].logger.lines.lock().unwrap();
270
let desired_log = "Calling manager's timer_chan_freshness_every_min".to_string();
271
- 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() {
272
break
273
}
274
0 commit comments