Skip to content

Commit

Permalink
fix(host): pass string instead of type
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Aug 23, 2024
1 parent 7908631 commit 788e7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pub async fn make_request() -> anyhow::Result<ProofRequestOpt> {
"8008500000000000000000000000000000000000000000000000000000000000".to_owned(),
),
prover: Some("0x70997970C51812dc3A010C7d01b50e0d17dc79C8".to_owned()),
proof_type: Some(proof_type),
proof_type: Some(proof_type.to_string()),
blob_proof_type: Some("kzg_versioned_hash".to_string()),
prover_args: ProverSpecificOpts {
native: None,
Expand Down

0 comments on commit 788e7c1

Please sign in to comment.