From be9ffb48193162c92ec6b32eb60d53b1af86c4d4 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 9 Aug 2021 22:03:53 +0000 Subject: [PATCH] Add #[allow(unused_mut)] on reorg_test as older rustc requires mut --- lightning/src/ln/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning/src/ln/mod.rs b/lightning/src/ln/mod.rs index 5576d8bd..758927fd 100644 --- a/lightning/src/ln/mod.rs +++ b/lightning/src/ln/mod.rs @@ -53,6 +53,7 @@ mod functional_tests; #[allow(unused_mut)] mod chanmon_update_fail_tests; #[cfg(test)] +#[allow(unused_mut)] mod reorg_tests; #[cfg(test)] #[allow(unused_mut)] -- 2.30.2