Skip to content

Commit faf671b

Browse files
committed
Getting back into this project; a little more clarity on what is needed and where
1 parent d8c04e3 commit faf671b

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

sdk/src/reader.rs

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,18 @@ impl Reader {
137137
}?;
138138

139139
let /* mut */ result = Self::from_store(store, &validation_log)?;
140-
if false {
141-
// QUESTION: What to do if we're in the _sync version and there
142-
// are identity assertions? Just report an error (needs async)?
143-
todo!("Add identity assertion validation here");
140+
if _sync {
141+
// TO DO: Figure out how to handle synchronous validation with
142+
// identity assertions? Just report an error (needs async)?
143+
if false {
144+
todo!("Add identity assertion validation here");
145+
}
146+
} else {
147+
if true {
148+
todo!("Add identity assertion validation here");
149+
}
144150
}
151+
145152
Ok(result)
146153
}
147154

0 commit comments

Comments
 (0)