From de662a88f52e399e1931137565471054695c39f9 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Thu, 16 May 2024 00:15:24 -0700 Subject: [PATCH] clarify the meaning of this comment --- src/service/pdu.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/service/pdu.rs b/src/service/pdu.rs index ec192c78..6e1a6ae3 100644 --- a/src/service/pdu.rs +++ b/src/service/pdu.rs @@ -45,8 +45,11 @@ pub(crate) struct PduEvent { #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) unsigned: Option>, pub(crate) hashes: EventHash, + + // The schema of this `RawJsonValue` is `BTreeMap, + // BTreeMap>` #[serde(default, skip_serializing_if = "Option::is_none")] - pub(crate) signatures: Option>, // BTreeMap, BTreeMap> + pub(crate) signatures: Option>, } impl PduEvent {