50cff241fe
* Refactor Block/Header definition Refactor block/header definition so that it's now responsibility of the nomos-core crate. This removes definitions in ledger/consensus crates since there's no need at that level to have an understanding of the block format. The new header format supports both carnot and cryptarchia.
11 lines
343 B
Rust
11 lines
343 B
Rust
mod ref_state;
|
|
pub mod sut;
|
|
mod transition;
|
|
|
|
type Block = carnot_engine::Block<[u8; 32]>;
|
|
type AggregateQc = carnot_engine::AggregateQc<[u8; 32]>;
|
|
type Qc = carnot_engine::Qc<[u8; 32]>;
|
|
type StandardQc = carnot_engine::StandardQc<[u8; 32]>;
|
|
type TimeoutQc = carnot_engine::TimeoutQc<[u8; 32]>;
|
|
type NewView = carnot_engine::NewView<[u8; 32]>;
|