pub trait Genesis: PrivateKey {
    // Required method
    fn genesis() -> Self;
}
Expand description

A type family with a by-convention notion of genesis private key.

Required Methods§

source

fn genesis() -> Self

Produces the genesis private key.

Implementors§