Fix visualizer coercion for multibyte hops

This commit is contained in:
Jack Kingsman
2026-03-07 20:55:58 -08:00
parent 55fb2390de
commit 2257c091e8
9 changed files with 187 additions and 35 deletions
+2 -1
View File
@@ -82,7 +82,8 @@ class ContactAdvertPath(BaseModel):
path: str = Field(description="Hex-encoded routing path (empty string for direct)")
path_len: int = Field(description="Number of hops in the path")
next_hop: str | None = Field(
default=None, description="First hop toward us (2-char hex), or null for direct"
default=None,
description="First hop toward us as a full hop identifier, or null for direct",
)
first_seen: int = Field(description="Unix timestamp of first observation")
last_seen: int = Field(description="Unix timestamp of most recent observation")