//! The module contains implementations and tests for the `SealedBlockConsensus` table. use crate::{ blueprint::plain::Plain, codec::{ postcard::Postcard, primitive::Primitive, }, column::Column, structured_storage::TableWithBlueprint, tables::SealedBlockConsensus, }; impl TableWithBlueprint for SealedBlockConsensus { type Blueprint = Plain, Postcard>; type Column = Column; fn column() -> Column { Column::FuelBlockConsensus } } #[cfg(test)] crate::basic_storage_tests!( SealedBlockConsensus, ::Key::default(), ::Value::default() );