pub mod cells;
pub mod compiler_aware;
pub mod types;
pub trait ConflictAwareCell {
fn rw_set(
&self,
intent: &truthlinked_core::pq_execution::TransactionIntent,
) -> (
Vec<truthlinked_core::pq_execution::AccountId>,
Vec<truthlinked_core::pq_execution::AccountId>,
);
}