From eded602aaaf9d053552971194cf32a4d26179ecf Mon Sep 17 00:00:00 2001 From: Petar Vujovic Date: Wed, 8 May 2024 09:29:03 +0200 Subject: [PATCH] fix: Add serde flatten to properly read prover specific configs --- host/src/request.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/host/src/request.rs b/host/src/request.rs index a188110fb..6f1ee7450 100644 --- a/host/src/request.rs +++ b/host/src/request.rs @@ -195,6 +195,7 @@ pub struct ProofRequestOpt { /// The proof type. pub proof_type: Option, #[command(flatten)] + #[serde(flatten)] /// Any additional prover params in JSON format. pub prover_args: ProverSpecificOpts, }