14 lines
453 B
Rust
14 lines
453 B
Rust
#[macro_use]
|
|
mod macros;
|
|
pub mod per_block_processing;
|
|
// mod epoch_processable;
|
|
pub mod errors;
|
|
// mod slot_processable;
|
|
|
|
pub use errors::{BlockInvalid, BlockProcessingError};
|
|
pub use per_block_processing::{
|
|
per_block_processing, per_block_processing_without_verifying_block_signature,
|
|
};
|
|
// pub use epoch_processable::{EpochProcessable, Error as EpochProcessingError};
|
|
// pub use slot_processable::{Error as SlotProcessingError, SlotProcessable};
|