Rename `background-processor` to `lightning-background-processor`
authorMatt Corallo <git@bluematt.me>
Mon, 8 Mar 2021 23:48:24 +0000 (18:48 -0500)
committerMatt Corallo <git@bluematt.me>
Tue, 9 Mar 2021 19:11:11 +0000 (14:11 -0500)
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.

background-processor/Cargo.toml
background-processor/src/lib.rs

index 1a4dc488436bbf3d3450d50087cff6bf7f6468b7..84fb7919f1cdef3a6b4bf1aa1556e78c70c53946 100644 (file)
@@ -1,6 +1,6 @@
 [package]
-name = "background-processor"
-version = "0.1.0"
+name = "lightning-background-processor"
+version = "0.0.1"
 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
 edition = "2018"
 
index 1976962bea6ef8c7951be6bd818e638be36ff5e1..f6c2dbfcae064562bfdb96a41a30c891c0f49a16 100644 (file)
@@ -268,7 +268,7 @@ mod tests {
                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
                        }
                }