Merge branch 'schouhy/implement-privacy-preserving-tail-calls' of github.com:vacp2p/nescience-testnet into schouhy/implement-privacy-preserving-tail-calls

This commit is contained in:
Sergio Chouhy 2025-11-25 14:52:16 -03:00
commit 58933a8270

View File

@ -26,7 +26,7 @@ fn main() {
let num_calls = program_outputs.len();
if num_calls > MAX_NUMBER_CHAINED_CALLS {
panic!("Max depth is exceeded");
panic!("Max chained calls depth is exceeded");
}
if program_outputs.last().and_then(|last| last.chained_call.as_ref()).is_some() {