2019-03-05 23:22:19 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
2019-03-06 06:14:54 +00:00
|
|
|
|
2019-03-06 04:22:45 +00:00
|
|
|
pub mod per_block_processing;
|
2019-03-06 06:14:54 +00:00
|
|
|
pub mod per_epoch_processing;
|
2019-03-05 23:22:19 +00:00
|
|
|
// mod slot_processable;
|
2019-02-14 01:09:18 +00:00
|
|
|
|
2019-03-06 04:22:45 +00:00
|
|
|
pub use per_block_processing::{
|
2019-03-06 06:14:54 +00:00
|
|
|
errors::{BlockInvalid, BlockProcessingError},
|
2019-03-06 04:22:45 +00:00
|
|
|
per_block_processing, per_block_processing_without_verifying_block_signature,
|
2019-02-14 01:09:18 +00:00
|
|
|
};
|
2019-03-06 07:57:41 +00:00
|
|
|
pub use per_epoch_processing::{errors::EpochProcessingError, per_epoch_processing};
|
2019-03-05 23:22:19 +00:00
|
|
|
// pub use epoch_processable::{EpochProcessable, Error as EpochProcessingError};
|
|
|
|
// pub use slot_processable::{Error as SlotProcessingError, SlotProcessable};
|