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.
1 parent 9d8efec commit 25b0c2aCopy full SHA for 25b0c2a
lightning/src/ln/mod.rs
@@ -35,12 +35,18 @@ mod channel;
35
mod onion_utils;
36
mod wire;
37
38
+// Older rustc (which we support) refuses to let us call the get_payment_preimage_hash!() macro
39
+// without the node parameter being mut. This is incorrect, and thus newer rustcs will complain
40
+// about an unnecessary mut. Thus, we silence the unused_mut warning in two test modules below.
41
+
42
#[cfg(test)]
43
#[macro_use]
44
pub(crate) mod functional_test_utils;
45
46
+#[allow(unused_mut)]
47
mod functional_tests;
48
49
50
mod chanmon_update_fail_tests;
51
52
mod reorg_tests;
0 commit comments