MrAzteca

Results 35 comments of MrAzteca

I'm having difficulties running that command. The compiler complains about `reth-trie`. ``` error[E0277]: the trait bound `reth_primitives::Account: From` is not satisfied --> /Users/esteve/.cargo/git/checkouts/reth-36d3ea1d1152b20c/75b7172/crates/trie/trie/src/state.rs:35:38 | 35 | let hashed_account = account.info.clone().map(Into::into);...

Could you check where is the stack overflowing? Depending on where it is, it could mean different things: - If it's overflowing in LLVM it may be a bug on...

Oh, I see. If I understood correctly it's not that there's a non-tail-recursive loop but rather that there's a lot of nested contract calls, right? We hadn't seen any crash...

Then it might be that the VM's main loop is not tail recursive.

Not really. As you said, the VM uses segments which are just `Vec`. Every `.push(_)` or (safe) operation will check the vector length and act accordingly. This is not the...