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
148 B
Rust
11 lines
148 B
Rust
pub mod account;
|
|
pub mod block;
|
|
pub mod crypto;
|
|
pub mod da;
|
|
pub mod header;
|
|
pub mod staking;
|
|
pub mod tx;
|
|
pub mod utils;
|
|
pub mod vote;
|
|
pub mod wire;
|