Joshy Orndorff
Joshy Orndorff
Here is my best attempt so far https://github.com/paritytech/cargo-contract/pull/1186
If you're bringing the video / workshop part of this up to speed, I highly recommend referencing a _tag_ in the new videa rather than a _branch_ like last time....
I guess running a node that you didn't build yourself has limited value in this particular repo because it is a workshop about modifying the code. Still this technique may...
@bedeho Tomorrow at 14:00 UTC I'll host @joshua-mir (and hopefully @serapath and @ninabreznik) on [Substrate Seminar](https://substrate.dev/seminar) to discuss the current state and future goals of datdot this project.
The client will author with the first **eligible** session key it finds. If a single client has two **eligible** session keys in its keystore, there is no guarantee which one...
> Nimbus Consensus implicitly picks the first one to propose blocks, which then get rejected by the runtime This should not happen in normal operation. If you are using `--force-authoring`,...
As I wrote in #4, I think a better approach would be ```rust pub enum SkipPrediction { Always, Never, AfterRuntimeUpgade, } ```
This will require a little more work on the client side. Currently we have no way of directly enforcing that there is only one block in each slot. If the...
Actually, ensuring that there are not two blocks in the same slot in the same chain in the runtime should be pretty easy. We can just store the slot number...
Moonbeam is still using the check inherents feature https://github.com/moonbeam-foundation/moonbeam/blob/96cf8898874509d529b03c4da0e07b2787bacb18/runtime/moonbeam/src/lib.rs#L1584C1-L1606C2. My reach goal would be to basically have the `ParachainConstraintChecker` trait have another function called `fn get_inherent_data_for_checking_inherents(...) -> InherentData`. Then impl...