Skip to content

Commit 3672c6b

Browse files
fix linter errors
1 parent c45e470 commit 3672c6b

File tree

1 file changed

+3
-3
lines changed
  • extensions/ecc/circuit/src/edwards_chip

1 file changed

+3
-3
lines changed

extensions/ecc/circuit/src/edwards_chip/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod tests;
88

99
use std::sync::{Arc, Mutex};
1010

11-
use num_bigint::{BigInt, BigUint};
11+
use num_bigint::BigUint;
1212
use openvm_circuit::{arch::VmChipWrapper, system::memory::OfflineMemory};
1313
use openvm_circuit_derive::InstructionExecutor;
1414
use openvm_circuit_primitives::var_range::SharedVariableRangeCheckerChip;
@@ -39,8 +39,8 @@ impl<F: PrimeField32, const BLOCKS: usize, const BLOCK_SIZE: usize>
3939
adapter: Rv32VecHeapAdapterChip<F, 2, BLOCKS, BLOCKS, BLOCK_SIZE, BLOCK_SIZE>,
4040
config: ExprBuilderConfig,
4141
offset: usize,
42-
a: num_bigint::BigUint,
43-
d: num_bigint::BigUint,
42+
a: BigUint,
43+
d: BigUint,
4444
range_checker: SharedVariableRangeCheckerChip,
4545
offline_memory: Arc<Mutex<OfflineMemory<F>>>,
4646
) -> Self {

0 commit comments

Comments
 (0)