Skip to content

Commit b6dfef5

Browse files
committed
chore: silence reeexports override warning in vrf package
1 parent 77594d0 commit b6dfef5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vrf/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// TODO: remove after finalization (once the num::* rexports have been removed)
2+
#![allow(hidden_glob_reexports)]
3+
14
use ark_ec::AffineCurve;
25
use ark_ff::{BigInteger, BigInteger256, One, PrimeField, SquareRootField, Zero};
36
use ledger::AccountIndex;
@@ -20,7 +23,7 @@ mod message;
2023
mod output;
2124
mod threshold;
2225

23-
// TODO: remove after finalization
26+
// TODO: remove after finalization, and `hidden_glob_reexports` lint attribute at beginning of file
2427
pub use num::*;
2528

2629
type VrfResult<T> = std::result::Result<T, VrfError>;

0 commit comments

Comments
 (0)