Bastian Köcher

Results 755 comments of Bastian Köcher

@crystalin do you have done anything on the relay chain? Like setting a different (older) head as latest head for the parachain?

@amani1104 can you still reproduce? If yes, can you please run with: ``` -l parachain::collation-generation=trace,cumulus-collator=trace,filtering-consensus=trace ```

This is a current limitation of our download implementation. There was just no nightly in the `2018-12-08`. We need to fix this by providing a way to fallback to the...

Hi, here is my default.nix for rust with rust-src: ```nix with import {}; let myrust = (rustChannels.stable.rust.override { extensions = [ "rust-src" ]; }); in stdenv.mkDerivation { name = "rust-dev";...

Yeah you are right, the path was wrong :/ Thx for that^^ Yeah, that should be documented ^^

When I finally have some time, I will improve the implementation to support `failure` :)

It's just changing the implementation, I think we should go the way @withoutboats proposed by restricting the type to `Debug`.

@U007D Back to `rust/master`. My recent changes does not include anything you changed :)

> The types i32 and i64 classify 32 and 64 bit integers, respectively. Integers are not inherently signed or unsigned, their interpretation is determined by individual operations. I would keep...

> In our implementation we simply overlooked the u32 because wasm only supports i32 IMO sounds to me like you didn't read the spec :see_no_evil: Maybe we can add in...