Update per-slot processing to v0.4.0

This commit is contained in:
Paul Hauner
2019-03-07 08:37:13 +11:00
parent 8a25fd48cf
commit 5a225d2983
3 changed files with 60 additions and 74 deletions

View File

@@ -3,12 +3,11 @@ mod macros;
pub mod per_block_processing;
pub mod per_epoch_processing;
// mod slot_processable;
pub mod per_slot_processing;
pub use per_block_processing::{
errors::{BlockInvalid, BlockProcessingError},
per_block_processing, per_block_processing_without_verifying_block_signature,
};
pub use per_epoch_processing::{errors::EpochProcessingError, per_epoch_processing};
// pub use epoch_processable::{EpochProcessable, Error as EpochProcessingError};
// pub use slot_processable::{Error as SlotProcessingError, SlotProcessable};
pub use per_slot_processing::{per_slot_processing, Error as SlotProcessingError};