From e5d4d87ca63f5a9b13acb9c5d0046b6d040fa031 Mon Sep 17 00:00:00 2001 From: agureev Date: Mon, 17 Aug 2026 21:09:46 +0400 Subject: [PATCH] doc: add privacy event-drop documentation --- lee/state_machine/core/src/program/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lee/state_machine/core/src/program/mod.rs b/lee/state_machine/core/src/program/mod.rs index f0bb5b82a..e6f0d8f1d 100644 --- a/lee/state_machine/core/src/program/mod.rs +++ b/lee/state_machine/core/src/program/mod.rs @@ -489,7 +489,8 @@ pub struct ProgramOutput { pub block_validity_window: BlockValidityWindow, /// The timestamp window where the program output is valid. pub timestamp_validity_window: TimestampValidityWindow, - /// A vector of event data. + /// A vector of event data. Dropped for private transaction for function + /// privacy. pub events: Vec>, }