Denis Drozhzhin
Denis Drozhzhin
While testing zombienet with local chain I've encountered DB lock error. If I was running parachains with two nodes, collators stores their DB in temporary location but relay parts of...
With the following peg file: ``` ident = @{ &ASCII_ALPHA ~ (ASCII_ALPHA | ASCII_DIGIT | "_")+ } integer = @{ ASCII_NONZERO_DIGIT ~ ASCII_DIGIT* | "0" } ident_index = { ident...
This allow to name nodes in different chains with non-unique names. Naming like "polkadot-alice", "statemint-alice", "equilibrium-alice" is more obvious than "alice", "alice1", "alice2", ...
I've implemented `System` trait for my System, but I want to use `DVector` as my `y` value. As i can see, `DVector` support in this crate is WIP, but nothing...