rooooooooob
rooooooooob
The error it fails with is in one of the unit tests. It's treating the test that's: ``` foo_bytes = bytes .cbor foo ; since we don't generate code for...
I don't think removing this has to do with dep graph ordering. Even though we have the dep graph ordering now, for just referring to a type it's fine if...
Note: that error wasn't because you had `bootstrapEraDistr = 1`, it was because it was later used within a group choice as the only field, which is indeed a bug,...
Note: the current behavior generates a wasm-exposed function like `pub fn bootstrap_era_distr() -> u32 { 1 }` (wasm doesn't support exposing constants) but I seem to have forgotten to make...
Right now the behavior is to create a type like `Foo(Vec)` with range-checks for its creation (new/deserialization). The code that handles this is shared with types like `bytes .size (10..20)`...
`cbor_event` (which the generated code uses) doesn't support floats
I pushed another commit that moves the on-chain crypto primitives into the `chain` crate in a `crypto` module. I kept base (not caring about encodings) versions of these in the...
>If you want to repro this, btw, you can cargo new an empty project and include Even if I do this without the CML dependency (Just the Aiken one) I...
This shouldn't be an issue here. The `Hash` trait is working on the direct bytes, just as the `Ord`/etc is, so the invariant specified in that link (`k1 == k2...