Add auto-resend option for not-heard-repeated messages. Closes #154.

This commit is contained in:
Jack Kingsman
2026-04-03 14:43:52 -07:00
parent 42e1b7b5d9
commit 1046baf741
10 changed files with 202 additions and 19 deletions
+7
View File
@@ -843,6 +843,13 @@ class AppSettings(BaseModel):
default_factory=list,
description="Public keys of repeaters opted into periodic telemetry collection (max 8)",
)
auto_resend_channel: bool = Field(
default=False,
description=(
"When enabled, outgoing channel messages that receive no echo within 2 seconds "
"are automatically byte-perfect resent once (within the 30-second dedup window)"
),
)
class FanoutConfig(BaseModel):