mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-04 06:13:10 +00:00
fix concatenation of call stack
This commit is contained in:
parent
f46d7ee426
commit
409ec19959
@ -168,7 +168,10 @@ impl PublicTransaction {
|
||||
state_diff.insert(pre.account_id, post.clone());
|
||||
}
|
||||
|
||||
chained_calls.extend(program_output.chained_calls);
|
||||
for new_call in program_output.chained_calls.into_iter().rev() {
|
||||
chained_calls.push_front(new_call);
|
||||
}
|
||||
|
||||
chain_calls_counter += 1;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user