diff --git a/zero_bin/prover/src/lib.rs b/zero_bin/prover/src/lib.rs index 2f76fadee..663acce18 100644 --- a/zero_bin/prover/src/lib.rs +++ b/zero_bin/prover/src/lib.rs @@ -24,10 +24,10 @@ pub type BlockProverInputFuture = std::pin::Pin< impl From for BlockProverInputFuture { fn from(item: BlockProverInput) -> Self { - async fn into(value: BlockProverInput) -> Result { - Ok(value) + async fn _from(item: BlockProverInput) -> Result { + Ok(item) } - Box::pin(into(item)) + Box::pin(_from(item)) } }