From ca5f421188b2fa50085f53a214719768aa613bc9 Mon Sep 17 00:00:00 2001 From: Moudy Date: Thu, 16 Apr 2026 19:41:26 +0200 Subject: [PATCH] fix: add private_pda_seeds to ChainedCall literals in example guests --- .../program_deployment/methods/guest/src/bin/simple_tail_call.rs | 1 + .../methods/guest/src/bin/tail_call_with_pda.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/program_deployment/methods/guest/src/bin/simple_tail_call.rs b/examples/program_deployment/methods/guest/src/bin/simple_tail_call.rs index 716e5c29..4c582b34 100644 --- a/examples/program_deployment/methods/guest/src/bin/simple_tail_call.rs +++ b/examples/program_deployment/methods/guest/src/bin/simple_tail_call.rs @@ -52,6 +52,7 @@ fn main() { instruction_data: chained_call_instruction_data, pre_states, pda_seeds: vec![], + private_pda_seeds: vec![], }; // Write the outputs. diff --git a/examples/program_deployment/methods/guest/src/bin/tail_call_with_pda.rs b/examples/program_deployment/methods/guest/src/bin/tail_call_with_pda.rs index 5ec9aaab..05cdfaa5 100644 --- a/examples/program_deployment/methods/guest/src/bin/tail_call_with_pda.rs +++ b/examples/program_deployment/methods/guest/src/bin/tail_call_with_pda.rs @@ -65,6 +65,7 @@ fn main() { instruction_data: chained_call_instruction_data, pre_states: vec![pre_state_for_chained_call], pda_seeds: vec![PDA_SEED], + private_pda_seeds: vec![], }; // Write the outputs.