From 760559c70ebea79e9140729f023760ba0c7b3ded Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 9 Sep 2021 19:42:17 +1000 Subject: [PATCH] Rename `schnorrsig` module to `schnorr` Schnorr is commenly known as a signature algorithm, we don't need to restate that in the name of the module. --- src/lib.rs | 2 +- src/{schnorrsig.rs => schnorr.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{schnorrsig.rs => schnorr.rs} (100%) diff --git a/src/lib.rs b/src/lib.rs index ad50782..d1bf624 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -148,7 +148,7 @@ mod key; pub mod constants; pub mod ecdh; pub mod ecdsa; -pub mod schnorrsig; +pub mod schnorr; #[cfg(feature = "serde")] mod serde_util; diff --git a/src/schnorrsig.rs b/src/schnorr.rs similarity index 100% rename from src/schnorrsig.rs rename to src/schnorr.rs