Skip to content

Commit 00550ba

Browse files
committed
Rename background-processor to lightning-background-processor
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.
1 parent c896461 commit 00550ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

background-processor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "background-processor"
3-
version = "0.1.0"
2+
name = "lightning-background-processor"
3+
version = "0.0.1"
44
authors = ["Valentine Wallace <[email protected]>"]
55
edition = "2018"
66

background-processor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ mod tests {
268268
loop {
269269
let log_entries = nodes[0].logger.lines.lock().unwrap();
270270
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() {
271+
if log_entries.get(&("lightning_background_processor".to_string(), desired_log)).is_some() {
272272
break
273273
}
274274
}

0 commit comments

Comments
 (0)