Skip to content

Commit

Permalink
Removes redundant util::self (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored May 20, 2021
1 parent b525d5d commit d2ca104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use typenum::U32;

use crate::{
curve::{Affine, ECMultContext, ECMultGenContext, Field, Jacobian, Scalar},
util::{self, Decoder, SignatureArray},
util::{Decoder, SignatureArray},
};

#[cfg(feature = "static-context")]
Expand Down

1 comment on commit d2ca104

@trevor-crypto
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah hah! Thanks. This was preventing me from accessing util within core

Please sign in to comment.