Merge branch 'maint' into master

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Johnathan Corgan
2026-04-15 17:08:50 +00:00
5 changed files with 305 additions and 1 deletions
+9
View File
@@ -172,6 +172,15 @@ impl Node {
return;
}
if let Err(e) = announce.validate_semantics() {
warn!(
from = %self.peer_display_name(from),
error = %e,
"Rejected TreeAnnounce with invalid ancestry"
);
return;
}
let now_ms = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_millis() as u64)