mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Use secp crate directly without extra use statement (#1738)
This commit is contained in:
parent
6f4eb8dd2e
commit
80d28f94ea
2 changed files with 2 additions and 3 deletions
|
@ -40,8 +40,7 @@ extern crate walkdir;
|
|||
extern crate zip as zip_rs;
|
||||
|
||||
// Re-export so only has to be included once
|
||||
pub extern crate secp256k1zkp as secp_;
|
||||
pub use secp_ as secp;
|
||||
pub extern crate secp256k1zkp as secp;
|
||||
|
||||
// Logging related
|
||||
pub mod logger;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
//! initialization overhead
|
||||
|
||||
use rand::thread_rng;
|
||||
use secp_ as secp;
|
||||
use secp;
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
lazy_static! {
|
||||
|
|
Loading…
Reference in a new issue