Davide Galassi
Davide Galassi
IMO it would be a reasonable compromise to have this feature for all editors supporting the `+line` arg. I assume that with the editors just enumerated you already covered a...
@andresilva sorry for the bogus review req.
> Does this keep that property? It'd be nice to have a test if so. @rphmeier the property is enforced by exactly the same means as before. In practice the...
@andresilva your opinion on this?
If we really want to do the renaming then this is a good opportunity. It is a bit annoying renaming variables and stuff ... :-)
> An epoch is always measured in slots, a session is just some abstract period, e.g. aura sessions are measured in number of blocks. This is interesting. So in short:...
Not stale
My debugger thanks you
Currently I'm able to reproduce the output of: ``` use blake2_rfc::blake2b::Blake2; let ctx = Blake2::with_key(32, KEY); ctx.update(DATA); let hash = ctx.finalize(); ``` With: ``` use blake2::{Blake2Mac, digest::{typenum::U32, Update, FixedOutput}}; let...