1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! This crate contains all logic typically implemented by an application developer.
//! This includes things like how to produce/verify blocks and how to identify which
//! participants are active at a given view.
use Hasher;
use NonZeroUsize;
pub use Application;
pub type Scheme = Scheme;
/// Genesis message to use during initialization.
const GENESIS: & = b"commonware is neat";
/// Returns the initial payload for the single consensus epoch.
/// Configuration for the application.