teddav

Results 26 comments of teddav

Weirdly, it seems like running the commands "from the outside" of the container works better $ docker run -v $(pwd):/app ghcr.io/foundry-rs/foundry "forge test -vvvv --root /app" This does not recompile...

A volume is mounted and the cache directory is present inside the container. That's why I copied the command that I ran: `docker run -it --rm -v $(pwd):/app -w /app...

Thanks! So I can mount a volume for the svm dir to avoid reinstalling it. But unfortunately it doesn't change the recompilation issue

yes, only in docker it seems. I can't figure out why, that's why I opened this issue

yes all seems to be good. If I remove all the cache folders, they are correctly recreated and written to (both in the docker and on my filesystem). So it...

Btw, I noticed that sometimes contracts are not recompiled (I can't tell why, or when), but even if not recompiled everything is extremely slow in the docker while really smooth...

One last test I just ran: I ran a new `ubuntu` container where i installed rust and foundry, and for running tests it's much faster than the image provided here....

Hi! I'm having the exact same issue. Using `type: 2` tx and the tx fails with `invalid chain id for signer`. Any idea how to fix that? Seems to also...

Thanks for answering @wei3erHase I tried but I got another error: `cannot override "chainId"` I'll try again and post back here with my solution when it works

Thanks @wei3erHase I just got back on it now. I ended up setting all the parameters manually and then passed it to `signer.signTransaction()`. If anyone is confused, in the end...