Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
fix suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
cpubot committed Jun 5, 2024
1 parent 5feec6a commit 47c8b54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ impl BlockProverInput {
let block_number = block_number
.to_u64()
.context("block number overflows u64")?;
let prev = match prev {
Some(it) => Some(it.await?),
None => None
let prev = match previous {
Some(it) => Some(it.await?),
None => None,
};

let block_proof = paladin::directive::Literal(proof)
Expand Down

0 comments on commit 47c8b54

Please sign in to comment.