Dmitry
Dmitry
@lnicola, sure. I'm using the following repo: https://github.com/AstarNetwork/astar-frame/commit/b1f286eb310ed1da83e2485f99a4a165462811b9 I tried to hover over some stuff and get the following output below. P.S.: There are other errors that happen upon project...
Out of curiosity, can https://github.com/udoprog/genco be used to generate the code on behalf of RA? It is reportedly whitespace aware and configurable.
Honestly, I don't know. My experience is that `wasm-opt` compiled form `master` works, but the one that is executed by `cargo wasi v0.1.22` does not. I assume that the fix...
> It looks like you'd have a third param, based on your first example, since that query seems to start at some distance from the origin, right? Oh, indeed. Sorry...
> An easy option if you are interested only in point clouds and have a uniform upper bound for the distance of your queries would be to add the points...
``` Compiling shiden-runtime v4.24.0 (/home/runner/work/Astar/Astar/runtime/shiden) error[E0046]: not all trait items implemented, missing: `ManagerOrigin` --> /home/runner/work/Astar/Astar/runtime/shiden/src/lib.rs:778:1 | 778 | impl pallet_xc_asset_config::Config for Runtime { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `ManagerOrigin` in implementation |...
Thanks for the detailed reply! Whilst I totally agree on your opinion on specialized languages and extended type systems, I think at least _for now_ it would be an interesting...
Looks like this happens because in case of `Data::Path`, `Handle::from_data` hashes the file name, not it's contents: ```rust fn from_data(data: Data) -> Handle { let mut hasher = Hasher::default(); data.hash(&mut...
Intermediate results so far. tldr: wasmer is ~twice as slow at instantiating modules and ~twice as fast at executing calls when compared to wasmi. ### The Setup I used the...
> I don't know how representative this call is, but imo it'd be good to repeat the benchmark with a few other function calls just to ensure that the overall...