Add module-level doc comment for keys/transparent.rs

This commit is contained in:
Deirdre Connolly 2020-03-13 17:37:02 -04:00 committed by Deirdre Connolly
parent 532bbaf460
commit ea773c7a4b
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,8 @@
//! Transparent key trait impls, around secp256k1::PublicKey
//!
//! We don't impl Arbitrary for PublicKey since it's being pulled in
//! from secp256k1 and we don't want to wrap it.
use std::io;
use secp256k1::PublicKey;