Remove redundant import

Clippy emits:

  warning: this import is redundant

This is a remnant of edition 2015, now we have edition 2018 we no longer
need this import statement.
This commit is contained in:
Tobin C. Harding 2022-06-10 12:21:29 +10:00
parent aba2663bc8
commit 1a582db160
1 changed files with 0 additions and 3 deletions

View File

@ -114,9 +114,6 @@ mod alloc_only {
use crate::ffi::{self, types::{c_uint, c_void}}; use crate::ffi::{self, types::{c_uint, c_void}};
use crate::{Secp256k1, Signing, Verification, Context, AlignedType}; use crate::{Secp256k1, Signing, Verification, Context, AlignedType};
#[cfg(feature = "rand-std")]
use rand;
impl private::Sealed for SignOnly {} impl private::Sealed for SignOnly {}
impl private::Sealed for All {} impl private::Sealed for All {}
impl private::Sealed for VerifyOnly {} impl private::Sealed for VerifyOnly {}