From d9a1e56983cf225d65fdafcd19a9efec60bcb428 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Thu, 19 Mar 2026 19:41:02 -0300 Subject: [PATCH] add docs --- nssa/core/src/program.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nssa/core/src/program.rs b/nssa/core/src/program.rs index 035c502f..bb89da6e 100644 --- a/nssa/core/src/program.rs +++ b/nssa/core/src/program.rs @@ -161,8 +161,11 @@ pub struct ProgramOutput { pub instruction_data: InstructionData, /// The account pre states the program received to produce this output. pub pre_states: Vec, + /// The account post states the program execution produced. pub post_states: Vec, + /// The list of chained calls to other programs. pub chained_calls: Vec, + /// The window where the program output is valid. pub validity_window: ValidityWindow, }