This commit is contained in:
Sergio Chouhy 2025-07-19 20:44:51 -03:00
parent 8d09f2ff56
commit c3932839f4

View File

@ -40,7 +40,7 @@ impl MockedSequencer {
fn program_output_is_valid(&self, input_accounts: &[Account], program_output: &ProgramOutput) -> bool {
let num_inputs = input_accounts.len();
// Fail if the number of accounts pre and post-states is differ
// Fail if the number of accounts pre and post-states differ
if program_output.accounts_pre.len() != program_output.accounts_post.len() {
return false;
}