Skip to content

Commit

Permalink
add allow(deprecated)
Browse files Browse the repository at this point in the history
  • Loading branch information
moricho committed Dec 5, 2024
1 parent 51101d2 commit f41835d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ mod signed;
pub use signed::{BigIntConversionError, ParseSignedError, Sign, Signed};

mod signature;
pub use signature::{
normalize_v, to_eip155_v, Parity, PrimitiveSignature, Signature, SignatureError,
};
pub use signature::{normalize_v, to_eip155_v, PrimitiveSignature, SignatureError};
#[allow(deprecated)]
pub use signature::{Parity, Signature};

pub mod utils;
pub use utils::{eip191_hash_message, keccak256, Keccak256};
Expand Down

0 comments on commit f41835d

Please sign in to comment.