finish sentence

This commit is contained in:
fryorcraken 2025-09-25 13:48:40 +10:00
parent 4ab882189d
commit fa5bf8cc4c
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -171,10 +171,10 @@ types:
MessageValidation: MessageValidation:
type: struct type: struct
fields: fields:
max_message_size_bytes: max_message_size:
type: uint type: string
default: 153600 # 150 KiB default: "150 KiB"
description: "The maximum accepted message size in Bytes" description: "Maximum message size. Accepted units: KiB, KB, and B. e.g. 1024KiB; 1500 B; etc."
# For now, RLN is the only message validation available # For now, RLN is the only message validation available
rln_config: rln_config:
type: RlnConfig type: RlnConfig
@ -288,13 +288,14 @@ whereas `relay` SHOULD be used if node has no strong hardware or bandwidth restr
## The Validation API ## The Validation API
[RLN Relay]() is currently the primary message validation mechanism in place. [WAKU2-RLN-RELAY](https://github.com/vacp2p/rfc-index/blob/main/waku/standards/core/17/rln-relay.md) is currently the primary message validation mechanism in place.
Work is scheduled to specify a validate API to enable plug-in validation. Work is scheduled to specify a validate API to enable plug-in validation.
As part of this API, it will be expected that an validation object can be passed, As part of this API, it will be expected that a validation object can be passed,
that would contain all validation parameters including RLN. that would contain all validation parameters including RLN.
In the time being, we In the time being, parameters specific to RLN are accepted for the message validation.
RLN can also be disabled.
## Security/Privacy Considerations ## Security/Privacy Considerations