This commit is contained in:
Sergio Chouhy 2026-03-19 19:41:02 -03:00
parent aeddb56978
commit d9a1e56983

View File

@ -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<AccountWithMetadata>,
/// The account post states the program execution produced.
pub post_states: Vec<AccountPostState>,
/// The list of chained calls to other programs.
pub chained_calls: Vec<ChainedCall>,
/// The window where the program output is valid.
pub validity_window: ValidityWindow,
}