Skip to content

Commit

Permalink
fix serialization in risc0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas089 committed Dec 10, 2024
1 parent 00e59fd commit 8981813
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions prover/src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ mod tests {
#[tokio::test]
async fn test_generate_transaction_zk_proof_risc0() {
let start_time = Instant::now();
let proof_input = serde_json::to_vec(
&get_ethereum_transaction_proof_inputs(0u32, DEFAULT_BLOCK_HASH).await,
)
.unwrap();
let proof_input = get_ethereum_transaction_proof_inputs(0u32, DEFAULT_BLOCK_HASH).await;
let env = ExecutorEnv::builder()
.write(&proof_input)
.unwrap()
Expand Down

0 comments on commit 8981813

Please sign in to comment.