We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c04e3 commit faf671bCopy full SHA for faf671b
sdk/src/reader.rs
@@ -137,11 +137,18 @@ impl Reader {
137
}?;
138
139
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");
+ if _sync {
+ // TO DO: Figure out how to handle synchronous validation with
+ // identity assertions? Just report an error (needs async)?
+ if false {
144
+ todo!("Add identity assertion validation here");
145
+ }
146
+ } else {
147
+ if true {
148
149
150
}
151
+
152
Ok(result)
153
154
0 commit comments