Skip to content

Commit 0bff331

Browse files
Fix lint
1 parent 1992a04 commit 0bff331

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

guest-libs/ff_derive/tests/programs/examples/full_limbs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ openvm::init!("openvm_init_full_limbs.rs");
2424
// Test that random masking does not overflow
2525
fn main() {
2626
use ff::Field;
27-
use rand::rngs::OsRng;
2827

2928
// randomness is not supported in OpenVM
29+
// use rand::rngs::OsRng;
3030
// let _ = F384p::random(OsRng);
3131

3232
test(F384p::ZERO);

guest-libs/p256/tests/programs/examples/ecdsa.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ extern crate alloc;
66
use ecdsa::{signature::hazmat::PrehashVerifier, Signature, VerifyingKey};
77
use elliptic_curve::{sec1::FromEncodedPoint, CurveArithmetic};
88
use hex_literal::hex;
9-
use openvm_p256::{EncodedPoint, P256};
10-
119
// clippy thinks this is unused, but it's used in the init! macro
1210
#[allow(unused)]
1311
use openvm_p256::P256Point;
12+
use openvm_p256::{EncodedPoint, P256};
1413

1514
openvm::init!("openvm_init_ecdsa.rs");
1615

0 commit comments

Comments
 (0)