mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-08-24 22:29:22 +00:00
Merge remote-tracking branch 'origin/main' into moudy/feat-private-pdas
# Conflicts: # artifacts/program_methods/amm.bin # artifacts/program_methods/associated_token_account.bin # artifacts/program_methods/authenticated_transfer.bin # artifacts/program_methods/clock.bin # artifacts/program_methods/pinata.bin # artifacts/program_methods/pinata_token.bin # artifacts/program_methods/privacy_preserving_circuit.bin # artifacts/program_methods/token.bin # artifacts/test_program_methods/burner.bin # artifacts/test_program_methods/chain_caller.bin # artifacts/test_program_methods/changer_claimer.bin # artifacts/test_program_methods/claimer.bin # artifacts/test_program_methods/clock_chain_caller.bin # artifacts/test_program_methods/data_changer.bin # artifacts/test_program_methods/extra_output.bin # artifacts/test_program_methods/flash_swap_callback.bin # artifacts/test_program_methods/flash_swap_initiator.bin # artifacts/test_program_methods/malicious_authorization_changer.bin # artifacts/test_program_methods/malicious_caller_program_id.bin # artifacts/test_program_methods/malicious_self_program_id.bin # artifacts/test_program_methods/minter.bin # artifacts/test_program_methods/missing_output.bin # artifacts/test_program_methods/modified_transfer.bin # artifacts/test_program_methods/nonce_changer.bin # artifacts/test_program_methods/noop.bin # artifacts/test_program_methods/pinata_cooldown.bin # artifacts/test_program_methods/program_owner_changer.bin # artifacts/test_program_methods/simple_balance_transfer.bin # artifacts/test_program_methods/time_locked_transfer.bin # artifacts/test_program_methods/validity_window.bin # artifacts/test_program_methods/validity_window_chain_caller.bin # nssa/core/src/program.rs # nssa/src/state.rs
This commit is contained in:
@@ -133,12 +133,17 @@ impl ExecutionState {
|
||||
|
||||
// Check that the program is well behaved.
|
||||
// See the # Programs section for the definition of the `validate_execution` method.
|
||||
let execution_valid = validate_execution(
|
||||
let validated_execution = validate_execution(
|
||||
&program_output.pre_states,
|
||||
&program_output.post_states,
|
||||
chained_call.program_id,
|
||||
);
|
||||
assert!(execution_valid, "Bad behaved program");
|
||||
if let Err(err) = validated_execution {
|
||||
panic!(
|
||||
"Invalid program behavior in program {:?}: {err}",
|
||||
chained_call.program_id
|
||||
);
|
||||
}
|
||||
|
||||
// Collect private-PDA bindings from this program_output's proven data. Each
|
||||
// `private_pda_seeds` entry in an outgoing chained call attests that the caller
|
||||
|
||||
Reference in New Issue
Block a user