mempool: use bitcoin projected block, rest is a very simple prediction

This commit is contained in:
nym21
2026-05-07 18:30:26 +02:00
parent 1b39d21bbe
commit f4910efd7d
69 changed files with 4340 additions and 5906 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ impl Selector {
}
};
if end < start {
return Err(Error::Parse(format!("range end {end} before start {start}")));
return Err(Error::Parse(format!(
"range end {end} before start {start}"
)));
}
Ok((start, end))
}