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 c678031 commit ba39606Copy full SHA for ba39606
lightning/src/debug_sync.rs
@@ -95,7 +95,7 @@ impl std::hash::Hash for LockDep {
95
fn get_construction_location(backtrace: &Backtrace) -> String {
96
// Find the first frame that is after `debug_sync` (or that is in our tests) and use
97
// that as the mutex construction site. Note that the first few frames may be in
98
- // `backtrace`, so we have to ignore those.
+ // the `backtrace` crate, so we have to ignore those.
99
let sync_mutex_constr_regex = regex::Regex::new(r"lightning.*debug_sync.*new").unwrap();
100
let mut found_debug_sync = false;
101
for frame in backtrace.frames() {
0 commit comments