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 277a79f commit 64c4bb2Copy full SHA for 64c4bb2
node/native/src/graphql/zkapp.rs
@@ -324,6 +324,8 @@ impl TryFrom<InputGraphQLAuthorization> for MinaBaseControlStableV2 {
324
)?;
325
Ok(MinaBaseControlStableV2::Proof(Box::new(proof)))
326
}
327
+ // Handle no auth case
328
+ (None, None) => Ok(MinaBaseControlStableV2::NoneGiven),
329
_ => Err(ConversionError::Custom(
330
"Either signature or proof must be provided, but not both".into(),
331
)),
0 commit comments