Bruno Deferrari
                                            Bruno Deferrari
                                        
                                    Hi @doug719, which file did you download? Remember that only the one suffixed `-src.tar.gz` contains the full sources.
Hello @doug719. Shen/Scheme supports whatever Chez supports, but Chez doesn't support ARM64 yet. Once that happens, then Shen/Scheme will also support it.
Unrelated to the potential boxroot issue, but note that in multithread programs you need to register your threads with the OCaml runtime, otherwise you will run into issues: https://v2.ocaml.org/manual/intfc.html#ss:c-thread-register You...
Try with rustup overrides https://rust-lang.github.io/rustup/overrides.html For example, in tezedge's directory do: ``` rustup override set 1.57 ```
You need to mount/bind the host directory for it to be visible inside docker: ```bash docker run \ -i \ -p 9732:9732 -p 18732:18732 -p 4927:4927 \ -v /home/it-tezos/configs:/configs \...
@jdsika the config file used by our docker images is https://github.com/tezedge/tezedge/blob/master/docker/distroless/tezedge.config (and you can find the `Dockerfile` in that same directory too). On line 98 you can see: ``` #...
@jdsika it is ok to keep your own config file. The alternative is to just pass arguments explicitly (that is what we do with the docker compose files): https://github.com/tezedge/tezedge/blob/b8e20d9886ad8b6876ad62375bacf1f6b7999e3b/docker-compose.yml#L7 And...
@bkontur tomorrow I will try to extend this to convert the results from the ocaml router to the correct responses in the Rust side: https://github.com/tezedge/tezedge/blob/master/tezos/api/src/ffi.rs#L673-L684
Yes, I think we do, rebasing it now.
Hmmmm I am not entirely sure now, because I added a generic handler for the OCaml side RPC responses, this one was meant to handle the generic `Not_found` that we...