Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tamirhemo committed Feb 13, 2024
1 parent 6ef8cd5 commit a0c305f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/field/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ impl<F: PrimeField, H: Host<Record = ExecutionRecord>> ExecutionAir<F, H> for Fi
}

#[instrument(name = "generate FieldLTU trace", skip_all)]
fn generate_trace(&self, record: &ExecutionRecord, host: &mut H) -> RowMajorMatrix<F> {
fn generate_trace(&self, record: &ExecutionRecord, _host: &mut H) -> RowMajorMatrix<F> {
// Generate the trace rows for each event.
let rows = record
.field_events
Expand Down
1 change: 1 addition & 0 deletions core/src/runtime/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use crate::{

use super::Opcode;

/// An arithmetization context for executing RISC-V instructions in a circuit.
pub trait Host {
/// The execution record associated with the host.
type Record;
Expand Down

0 comments on commit a0c305f

Please sign in to comment.