refactor: work on auth chain and state compressor
This commit is contained in:
10
src/service/rooms/state_compressor/data.rs
Normal file
10
src/service/rooms/state_compressor/data.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
struct StateDiff {
|
||||
parent: Option<u64>,
|
||||
added: Vec<CompressedStateEvent>,
|
||||
removed: Vec<CompressedStateEvent>,
|
||||
}
|
||||
|
||||
pub trait Data {
|
||||
fn get_statediff(shortstatehash: u64) -> Result<StateDiff>;
|
||||
fn save_statediff(shortstatehash: u64, diff: StateDiff) -> Result<()>;
|
||||
}
|
||||
Reference in New Issue
Block a user