Line data Source code
1 : #ifndef HEADER_fd_src_choreo_fd_choreo_base_h 2 : #define HEADER_fd_src_choreo_fd_choreo_base_h 3 : 4 : /* Choreo consensus library: 5 : 6 : - eqvoc: Block and vote equivocation. 7 : 8 : - forks: Frontier of banks. 9 : 10 : - ghost: Fork choice rule. 11 : 12 : - tower: TowerBFT algorithm. 13 : 14 : - voter: Voter tracking. 15 : 16 : */ 17 : 18 : #include "../flamenco/fd_flamenco.h" 19 : #include "../flamenco/types/fd_types.h" 20 : 21 51 : #define FD_VOTER_MAX (4096) /* the maximum # of unique voters ie. node pubkeys. */ 22 : 23 : static const fd_pubkey_t pubkey_null = {{ 0 }}; 24 : static const fd_hash_t hash_null = {{ 0 }}; 25 : 26 : #endif /* HEADER_fd_src_choreo_fd_choreo_base_h */